Skip to content

Commit

Permalink
Updates from spec version 185.0.1 (#2269)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 28, 2024
1 parent 06956a4 commit df6a618
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 22 deletions.
42 changes: 21 additions & 21 deletions troposphere/apigatewayv2.py
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,27 @@ class DomainName(AWSObject):
}


class ResponseParameter(AWSProperty):
"""
`ResponseParameter <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameter.html>`__
"""

props: PropsDictType = {
"Destination": (str, False),
"Source": (str, False),
}


class ResponseParameterMap(AWSProperty):
"""
`ResponseParameterMap <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparametermap.html>`__
"""

props: PropsDictType = {
"ResponseParameters": ([ResponseParameter], False),
}


class TlsConfig(AWSProperty):
"""
`TlsConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html>`__
Expand Down Expand Up @@ -423,24 +444,3 @@ class VpcLink(AWSObject):
"SubnetIds": ([str], True),
"Tags": (dict, False),
}


class ResponseParameter(AWSProperty):
"""
`ResponseParameter <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameter.html>`__
"""

props: PropsDictType = {
"Destination": (str, True),
"Source": (str, True),
}


class ResponseParameterList(AWSProperty):
"""
`ResponseParameterList <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameterlist.html>`__
"""

props: PropsDictType = {
"ResponseParameters": ([ResponseParameter], False),
}
2 changes: 1 addition & 1 deletion troposphere/iotfleetwise.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ class Campaign(AWSObject):
resource_type = "AWS::IoTFleetWise::Campaign"

props: PropsDictType = {
"Action": (str, True),
"Action": (str, False),
"CollectionScheme": (CollectionScheme, True),
"Compression": (str, False),
"DataDestinationConfigs": ([DataDestinationConfig], False),
Expand Down
2 changes: 2 additions & 0 deletions troposphere/medialive.py
Original file line number Diff line number Diff line change
Expand Up @@ -1532,6 +1532,7 @@ class H264Settings(AWSProperty):
"LookAheadRateControl": (str, False),
"MaxBitrate": (integer, False),
"MinIInterval": (integer, False),
"MinQp": (integer, False),
"NumRefFrames": (integer, False),
"ParControl": (str, False),
"ParDenominator": (integer, False),
Expand Down Expand Up @@ -1621,6 +1622,7 @@ class H265Settings(AWSProperty):
"LookAheadRateControl": (str, False),
"MaxBitrate": (integer, False),
"MinIInterval": (integer, False),
"MinQp": (integer, False),
"MvOverPictureBoundaries": (str, False),
"MvTemporalPredictor": (str, False),
"ParDenominator": (integer, False),
Expand Down
1 change: 1 addition & 0 deletions troposphere/rds.py
Original file line number Diff line number Diff line change
Expand Up @@ -508,6 +508,7 @@ class GlobalCluster(AWSObject):
"GlobalClusterIdentifier": (str, False),
"SourceDBClusterIdentifier": (str, False),
"StorageEncrypted": (boolean, False),
"Tags": (Tags, False),
}


Expand Down
1 change: 1 addition & 0 deletions troposphere/s3express.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ class DirectoryBucket(AWSObject):
resource_type = "AWS::S3Express::DirectoryBucket"

props: PropsDictType = {
"BucketEncryption": (dict, False),
"BucketName": (str, False),
"DataRedundancy": (str, True),
"LocationName": (str, True),
Expand Down
1 change: 1 addition & 0 deletions troposphere/synthetics.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ class Canary(AWSObject):
"ExecutionRoleArn": (str, True),
"FailureRetentionPeriod": (integer, False),
"Name": (str, True),
"ResourcesToReplicateTags": ([str], False),
"RunConfig": (RunConfig, False),
"RuntimeVersion": (canary_runtime_version, True),
"Schedule": (Schedule, True),
Expand Down

0 comments on commit df6a618

Please sign in to comment.