Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fetch latest specification #4

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified generator/CloudFormationResourceSpecification.json.gz
Binary file not shown.
263 changes: 189 additions & 74 deletions generator/src/codegen/mod.rs

Large diffs are not rendered by default.

428 changes: 428 additions & 0 deletions src/aws/acmpca.rs

Large diffs are not rendered by default.

2,013 changes: 2,013 additions & 0 deletions src/aws/amplifyuibuilder.rs

Large diffs are not rendered by default.

93 changes: 65 additions & 28 deletions src/aws/apigateway.rs

Large diffs are not rendered by default.

13 changes: 13 additions & 0 deletions src/aws/apigatewayv2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2979,6 +2979,11 @@ pub mod domain_name {
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub endpoint_type: Option<::Value<String>>,
/// Property [`OwnershipVerificationCertificateArn`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-domainname-domainnameconfiguration.html#cfn-apigatewayv2-domainname-domainnameconfiguration-ownershipverificationcertificatearn).
///
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub ownership_verification_certificate_arn: Option<::Value<String>>,
/// Property [`SecurityPolicy`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-domainname-domainnameconfiguration.html#cfn-apigatewayv2-domainname-domainnameconfiguration-securitypolicy).
///
/// Update type: _Mutable_.
Expand All @@ -2998,6 +3003,9 @@ pub mod domain_name {
if let Some(ref endpoint_type) = self.endpoint_type {
::serde::ser::SerializeMap::serialize_entry(&mut map, "EndpointType", endpoint_type)?;
}
if let Some(ref ownership_verification_certificate_arn) = self.ownership_verification_certificate_arn {
::serde::ser::SerializeMap::serialize_entry(&mut map, "OwnershipVerificationCertificateArn", ownership_verification_certificate_arn)?;
}
if let Some(ref security_policy) = self.security_policy {
::serde::ser::SerializeMap::serialize_entry(&mut map, "SecurityPolicy", security_policy)?;
}
Expand All @@ -3020,6 +3028,7 @@ pub mod domain_name {
let mut certificate_arn: Option<::Value<String>> = None;
let mut certificate_name: Option<::Value<String>> = None;
let mut endpoint_type: Option<::Value<String>> = None;
let mut ownership_verification_certificate_arn: Option<::Value<String>> = None;
let mut security_policy: Option<::Value<String>> = None;

while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
Expand All @@ -3033,6 +3042,9 @@ pub mod domain_name {
"EndpointType" => {
endpoint_type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"OwnershipVerificationCertificateArn" => {
ownership_verification_certificate_arn = ::serde::de::MapAccess::next_value(&mut map)?;
}
"SecurityPolicy" => {
security_policy = ::serde::de::MapAccess::next_value(&mut map)?;
}
Expand All @@ -3044,6 +3056,7 @@ pub mod domain_name {
certificate_arn: certificate_arn,
certificate_name: certificate_name,
endpoint_type: endpoint_type,
ownership_verification_certificate_arn: ownership_verification_certificate_arn,
security_policy: security_policy,
})
}
Expand Down
13 changes: 13 additions & 0 deletions src/aws/appconfig.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ pub struct ConfigurationProfileProperties {
/// Update type: _Mutable_.
/// AWS CloudFormation doesn't replace the resource when you change this property.
pub tags: Option<::ValueList<self::configuration_profile::Tags>>,
/// Property [`Type`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-type).
///
/// Update type: _Immutable_.
/// AWS CloudFormation replaces the resource when you change this property.
pub r#type: Option<::Value<String>>,
/// Property [`Validators`](http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-configurationprofile.html#cfn-appconfig-configurationprofile-validators).
///
/// Update type: _Mutable_.
Expand All @@ -163,6 +168,9 @@ impl ::serde::Serialize for ConfigurationProfileProperties {
if let Some(ref tags) = self.tags {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Tags", tags)?;
}
if let Some(ref r#type) = self.r#type {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Type", r#type)?;
}
if let Some(ref validators) = self.validators {
::serde::ser::SerializeMap::serialize_entry(&mut map, "Validators", validators)?;
}
Expand All @@ -188,6 +196,7 @@ impl<'de> ::serde::Deserialize<'de> for ConfigurationProfileProperties {
let mut name: Option<::Value<String>> = None;
let mut retrieval_role_arn: Option<::Value<String>> = None;
let mut tags: Option<::ValueList<self::configuration_profile::Tags>> = None;
let mut r#type: Option<::Value<String>> = None;
let mut validators: Option<::ValueList<self::configuration_profile::Validators>> = None;

while let Some(__cfn_key) = ::serde::de::MapAccess::next_key::<String>(&mut map)? {
Expand All @@ -210,6 +219,9 @@ impl<'de> ::serde::Deserialize<'de> for ConfigurationProfileProperties {
"Tags" => {
tags = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Type" => {
r#type = ::serde::de::MapAccess::next_value(&mut map)?;
}
"Validators" => {
validators = ::serde::de::MapAccess::next_value(&mut map)?;
}
Expand All @@ -224,6 +236,7 @@ impl<'de> ::serde::Deserialize<'de> for ConfigurationProfileProperties {
name: name.ok_or(::serde::de::Error::missing_field("Name"))?,
retrieval_role_arn: retrieval_role_arn,
tags: tags,
r#type: r#type,
validators: validators,
})
}
Expand Down
Loading