CfnAcmeExternalAccountBindingPropsMixin

class aws_cdk.cfn_property_mixins.aws_certificatemanager.CfnAcmeExternalAccountBindingPropsMixin(props, *, strategy=None)

Bases: Mixin

Resource Type definition for AWS::CertificateManager::AcmeExternalAccountBinding.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-acmeexternalaccountbinding.html

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:

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 x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

ExpirationProperty

class CfnAcmeExternalAccountBindingPropsMixin.ExpirationProperty(*, type=None, value=None)

Bases: object

The 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:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-expiration.html

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.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-expiration.html#cfn-certificatemanager-acmeexternalaccountbinding-expiration-type

value

The expiration value.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-expiration.html#cfn-certificatemanager-acmeexternalaccountbinding-expiration-value

TagsItemsProperty

class CfnAcmeExternalAccountBindingPropsMixin.TagsItemsProperty(*, key=None, value=None)

Bases: object

Parameters:
  • key (Optional[str]) – The key name of the tag.

  • value (Optional[str]) – The value for the tag.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-tagsitems.html

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

tags_items_property = certificatemanager.CfnAcmeExternalAccountBindingPropsMixin.TagsItemsProperty(
    key="key",
    value="value"
)

Attributes

key

The key name of the tag.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-tagsitems.html#cfn-certificatemanager-acmeexternalaccountbinding-tagsitems-key

value

The value for the tag.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeexternalaccountbinding-tagsitems.html#cfn-certificatemanager-acmeexternalaccountbinding-tagsitems-value