Skip to content
Merged
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
2 changes: 2 additions & 0 deletions troposphere/cloudfront.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ class AnycastIpList(AWSObject):
resource_type = "AWS::CloudFront::AnycastIpList"

props: PropsDictType = {
"IpAddressType": (str, False),
"IpCount": (integer, True),
"Name": (str, True),
"Tags": (validate_tags_items_array, False),
Expand Down Expand Up @@ -1378,6 +1379,7 @@ class AnycastIpListProperty(AWSProperty):
"AnycastIps": ([str], True),
"Arn": (str, True),
"Id": (str, True),
"IpAddressType": (str, False),
"IpCount": (integer, True),
"LastModifiedTime": (str, True),
"Name": (str, True),
Expand Down
2 changes: 1 addition & 1 deletion troposphere/datazone.py
Original file line number Diff line number Diff line change
Expand Up @@ -1096,7 +1096,7 @@ class EnvironmentConfiguration(AWSProperty):
"DeploymentOrder": (double, False),
"Description": (str, False),
"EnvironmentBlueprintId": (str, True),
"Id": (str, False),
"EnvironmentConfigurationId": (str, False),
"Name": (str, True),
}

Expand Down
3 changes: 0 additions & 3 deletions troposphere/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -314,8 +314,6 @@ class GlobalTable(AWSObject):
"AttributeDefinitions": ([AttributeDefinition], True),
"BillingMode": (str, False),
"GlobalSecondaryIndexes": ([GlobalTableGlobalSecondaryIndex], False),
"GlobalTableSettingsReplicationMode": (str, False),
"GlobalTableSourceArn": (str, False),
"GlobalTableWitnesses": ([GlobalTableWitness], False),
"KeySchema": ([KeySchema], True),
"LocalSecondaryIndexes": ([LocalSecondaryIndex], False),
Expand Down Expand Up @@ -443,7 +441,6 @@ class Table(AWSObject):
"ContributorInsightsSpecification": (ContributorInsightsSpecification, False),
"DeletionProtectionEnabled": (boolean, False),
"GlobalSecondaryIndexes": ([GlobalSecondaryIndex], False),
"GlobalTableSettingsReplicationMode": (str, False),
"ImportSourceSpecification": (ImportSourceSpecification, False),
"KeySchema": ([KeySchema], True),
"KinesisStreamSpecification": (KinesisStreamSpecification, False),
Expand Down
1 change: 1 addition & 0 deletions troposphere/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1795,6 +1795,7 @@ class NatGateway(AWSObject):
"SecondaryPrivateIpAddresses": ([str], False),
"SubnetId": (str, False),
"Tags": (validate_tags_or_list, False),
"VpcId": (str, False),
}


Expand Down
4 changes: 3 additions & 1 deletion troposphere/ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -371,7 +371,7 @@ class ClusterCapacityProviderAssociations(AWSObject):
resource_type = "AWS::ECS::ClusterCapacityProviderAssociations"

props: PropsDictType = {
"CapacityProviders": ([str], True),
"CapacityProviders": ([str], False),
"Cluster": (str, True),
"DefaultCapacityProviderStrategy": ([CapacityProviderStrategy], True),
}
Expand Down Expand Up @@ -435,8 +435,10 @@ class DeploymentConfiguration(AWSProperty):
props: PropsDictType = {
"Alarms": (DeploymentAlarms, False),
"BakeTimeInMinutes": (integer, False),
"CanaryConfiguration": (dict, False),
"DeploymentCircuitBreaker": (DeploymentCircuitBreaker, False),
"LifecycleHooks": ([DeploymentLifecycleHook], False),
"LinearConfiguration": (dict, False),
"MaximumPercent": (integer, False),
"MinimumHealthyPercent": (integer, False),
"Strategy": (str, False),
Expand Down
13 changes: 13 additions & 0 deletions troposphere/imagebuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -688,3 +688,16 @@ class Workflow(AWSObject):
"Uri": (str, False),
"Version": (str, True),
}


class LatestVersion(AWSProperty):
"""
`LatestVersion <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-imagebuilder-workflow-latestversion.html>`__
"""

props: PropsDictType = {
"Arn": (str, False),
"Major": (str, False),
"Minor": (str, False),
"Patch": (str, False),
}
9 changes: 9 additions & 0 deletions troposphere/medialive.py
Original file line number Diff line number Diff line change
Expand Up @@ -1423,6 +1423,15 @@ class MediaPackageV2GroupSettings(AWSProperty):

props: PropsDictType = {
"CaptionLanguageMappings": ([CaptionLanguageMapping], False),
"Id3Behavior": (str, False),
"KlvBehavior": (str, False),
"NielsenId3Behavior": (str, False),
"Scte35Type": (str, False),
"SegmentLength": (integer, False),
"SegmentLengthUnits": (str, False),
"TimedMetadataId3Frame": (str, False),
"TimedMetadataId3Period": (integer, False),
"TimedMetadataPassthrough": (str, False),
}


Expand Down
1 change: 1 addition & 0 deletions troposphere/sagemaker.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,6 +911,7 @@ class DomainSettings(AWSProperty):
props: PropsDictType = {
"DockerSettings": (DockerSettings, False),
"ExecutionRoleIdentityConfig": (str, False),
"IpAddressType": (str, False),
"RStudioServerProDomainSettings": (RStudioServerProDomainSettings, False),
"SecurityGroupIds": ([str], False),
"UnifiedStudioSettings": (UnifiedStudioSettings, False),
Expand Down
4 changes: 2 additions & 2 deletions troposphere/servicecatalog.py
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,6 @@ class TagOptionAssociation(AWSObject):
resource_type = "AWS::ServiceCatalog::TagOptionAssociation"

props: PropsDictType = {
"ResourceId": (str, True),
"TagOptionId": (str, True),
"ResourceId": (str, False),
"TagOptionId": (str, False),
}
15 changes: 15 additions & 0 deletions troposphere/ssmquicksetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,21 @@ class ConfigurationManager(AWSObject):
}


class LifecycleAutomation(AWSObject):
"""
`LifecycleAutomation <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssmquicksetup-lifecycleautomation.html>`__
"""

resource_type = "AWS::SSMQuickSetup::LifecycleAutomation"

props: PropsDictType = {
"AutomationDocument": (str, True),
"AutomationParameters": (dict, True),
"ResourceKey": (str, True),
"Tags": (dict, False),
}


class StatusSummary(AWSProperty):
"""
`StatusSummary <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmquicksetup-configurationmanager-statussummary.html>`__
Expand Down
3 changes: 2 additions & 1 deletion troposphere/synthetics.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,9 @@ class Code(AWSProperty):
"""

props: PropsDictType = {
"BlueprintTypes": ([str], False),
"Dependencies": ([Dependency], False),
"Handler": (str, True),
"Handler": (str, False),
"S3Bucket": (str, False),
"S3Key": (str, False),
"S3ObjectVersion": (str, False),
Expand Down
1 change: 1 addition & 0 deletions troposphere/vpclattice.py
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ class ResourceGateway(AWSObject):

props: PropsDictType = {
"IpAddressType": (str, False),
"Ipv4AddressesPerEni": (integer, False),
"Name": (str, True),
"SecurityGroupIds": ([str], False),
"SubnetIds": ([str], True),
Expand Down