Skip to content

Commit

Permalink
Updates from spec version 185.0.1 (#2272)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Oct 2, 2024
1 parent 7b2e63c commit c15fe04
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 1 deletion.
2 changes: 2 additions & 0 deletions troposphere/cognito.py
Original file line number Diff line number Diff line change
Expand Up @@ -463,6 +463,8 @@ class UserPool(AWSObject):
"AutoVerifiedAttributes": ([str], False),
"DeletionProtection": (str, False),
"DeviceConfiguration": (DeviceConfiguration, False),
"EmailAuthenticationMessage": (str, False),
"EmailAuthenticationSubject": (str, False),
"EmailConfiguration": (EmailConfiguration, False),
"EmailVerificationMessage": (str, False),
"EmailVerificationSubject": (str, False),
Expand Down
2 changes: 2 additions & 0 deletions troposphere/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -2511,6 +2511,7 @@ class TransitGateway(AWSObject):
"DnsSupport": (str, False),
"MulticastSupport": (str, False),
"PropagationDefaultRouteTableId": (str, False),
"SecurityGroupReferencingSupport": (str, False),
"Tags": (validate_tags_or_list, False),
"TransitGatewayCidrBlocks": ([str], False),
"VpnEcmpSupport": (str, False),
Expand All @@ -2526,6 +2527,7 @@ class Options(AWSProperty):
"ApplianceModeSupport": (str, False),
"DnsSupport": (str, False),
"Ipv6Support": (str, False),
"SecurityGroupReferencingSupport": (str, False),
}


Expand Down
11 changes: 11 additions & 0 deletions troposphere/eks.py
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,16 @@ class UpgradePolicy(AWSProperty):
}


class ZonalShiftConfig(AWSProperty):
"""
`ZonalShiftConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-cluster-zonalshiftconfig.html>`__
"""

props: PropsDictType = {
"Enabled": (boolean, False),
}


class Cluster(AWSObject):
"""
`Cluster <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-eks-cluster.html>`__
Expand All @@ -231,6 +241,7 @@ class Cluster(AWSObject):
"Tags": (Tags, False),
"UpgradePolicy": (UpgradePolicy, False),
"Version": (str, False),
"ZonalShiftConfig": (ZonalShiftConfig, False),
}


Expand Down
1 change: 1 addition & 0 deletions troposphere/sagemaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -1308,6 +1308,7 @@ class ImageVersion(AWSObject):
"ProgrammingLang": (str, False),
"ReleaseNotes": (str, False),
"VendorGuidance": (str, False),
"Version": (integer, False),
}


Expand Down
3 changes: 2 additions & 1 deletion troposphere/ses.py
Original file line number Diff line number Diff line change
Expand Up @@ -590,7 +590,8 @@ class RuleStringToEvaluate(AWSProperty):
"""

props: PropsDictType = {
"Attribute": (str, True),
"Attribute": (str, False),
"MimeHeaderAttribute": (str, False),
}


Expand Down
1 change: 1 addition & 0 deletions troposphere/workspacesweb.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class IdentityProvider(AWSObject):
"IdentityProviderName": (str, True),
"IdentityProviderType": (str, True),
"PortalArn": (str, False),
"Tags": (Tags, False),
}


Expand Down

0 comments on commit c15fe04

Please sign in to comment.