CfnAcmeExternalAccountBindingPropsMixin
- class aws_cdk.cfn_property_mixins.aws_certificatemanager.CfnAcmeExternalAccountBindingPropsMixin(props, *, strategy=None)
Bases:
MixinResource Type definition for AWS::CertificateManager::AcmeExternalAccountBinding.
- See:
- CloudformationResource:
AWS::CertificateManager::AcmeExternalAccountBinding
- Mixin:
true
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_certificatemanager as certificatemanager import aws_cdk as cdk # merge_strategy: cdk.IMergeStrategy cfn_acme_external_account_binding_props_mixin = certificatemanager.CfnAcmeExternalAccountBindingPropsMixin(certificatemanager.CfnAcmeExternalAccountBindingMixinProps( acme_endpoint_arn="acmeEndpointArn", expiration=certificatemanager.CfnAcmeExternalAccountBindingPropsMixin.ExpirationProperty( type="type", value=123 ), role_arn="roleArn", tags=[certificatemanager.CfnAcmeExternalAccountBindingPropsMixin.TagsItemsProperty( key="key", value="value" )] ), strategy=merge_strategy )
Create a mixin to apply properties to
AWS::CertificateManager::AcmeExternalAccountBinding.- Parameters:
props (
Union[CfnAcmeExternalAccountBindingMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
Methods
- apply_to(construct)
Apply the mixin properties to the construct.
- Parameters:
construct (
IConstruct)- Return type:
None
- supports(construct)
Check if this mixin supports the given construct.
- Parameters:
construct (
IConstruct)- Return type:
bool
Attributes
- CFN_PROPERTY_KEYS = ['acmeEndpointArn', 'expiration', 'roleArn', 'tags']
Static Methods
- classmethod is_mixin(x)
Checks if
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
ExpirationProperty
- class CfnAcmeExternalAccountBindingPropsMixin.ExpirationProperty(*, type=None, value=None)
Bases:
objectThe expiration configuration for the external account binding.
- Parameters:
type (
Optional[str]) – The time unit for the expiration value.value (
Union[int,float,None]) – The expiration value.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.cfn_property_mixins import aws_certificatemanager as certificatemanager expiration_property = certificatemanager.CfnAcmeExternalAccountBindingPropsMixin.ExpirationProperty( type="type", value=123 )
Attributes
- type
The time unit for the expiration value.