CfnAcmeEndpointPropsMixin

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

Bases: Mixin

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

See:

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

CloudformationResource:

AWS::CertificateManager::AcmeEndpoint

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_endpoint_props_mixin = certificatemanager.CfnAcmeEndpointPropsMixin(certificatemanager.CfnAcmeEndpointMixinProps(
    authorization_behavior="authorizationBehavior",
    certificate_authority=certificatemanager.CfnAcmeEndpointPropsMixin.CertificateAuthorityProperty(
        public_certificate_authority=certificatemanager.CfnAcmeEndpointPropsMixin.PublicCertificateAuthorityProperty(
            allowed_key_algorithms=["allowedKeyAlgorithms"]
        )
    ),
    certificate_tags=[cdk.CfnTag(
        key="key",
        value="value"
    )],
    contact="contact",
    tags=[certificatemanager.CfnAcmeEndpointPropsMixin.TagsItemsProperty(
        key="key",
        value="value"
    )]
),
    strategy=merge_strategy
)

Create a mixin to apply properties to AWS::CertificateManager::AcmeEndpoint.

Parameters:
  • props (Union[CfnAcmeEndpointMixinProps, 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 = ['authorizationBehavior', 'certificateAuthority', 'certificateTags', 'contact', '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.

CertificateAuthorityProperty

class CfnAcmeEndpointPropsMixin.CertificateAuthorityProperty(*, public_certificate_authority=None)

Bases: object

The certificate authority configuration for the ACME endpoint.

Parameters:

public_certificate_authority (Union[IResolvable, PublicCertificateAuthorityProperty, Dict[str, Any], None]) – Configuration for the public certificate authority.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-certificateauthority.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

certificate_authority_property = certificatemanager.CfnAcmeEndpointPropsMixin.CertificateAuthorityProperty(
    public_certificate_authority=certificatemanager.CfnAcmeEndpointPropsMixin.PublicCertificateAuthorityProperty(
        allowed_key_algorithms=["allowedKeyAlgorithms"]
    )
)

Attributes

public_certificate_authority

Configuration for the public certificate authority.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-certificateauthority.html#cfn-certificatemanager-acmeendpoint-certificateauthority-publiccertificateauthority

PublicCertificateAuthorityProperty

class CfnAcmeEndpointPropsMixin.PublicCertificateAuthorityProperty(*, allowed_key_algorithms=None)

Bases: object

Configuration for the public certificate authority.

Parameters:

allowed_key_algorithms (Optional[Sequence[str]]) – The allowed key algorithms for certificates issued via this endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-publiccertificateauthority.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

public_certificate_authority_property = certificatemanager.CfnAcmeEndpointPropsMixin.PublicCertificateAuthorityProperty(
    allowed_key_algorithms=["allowedKeyAlgorithms"]
)

Attributes

allowed_key_algorithms

The allowed key algorithms for certificates issued via this endpoint.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-acmeendpoint-publiccertificateauthority.html#cfn-certificatemanager-acmeendpoint-publiccertificateauthority-allowedkeyalgorithms

TagsItemsProperty

class CfnAcmeEndpointPropsMixin.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-acmeendpoint-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.CfnAcmeEndpointPropsMixin.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-acmeendpoint-tagsitems.html#cfn-certificatemanager-acmeendpoint-tagsitems-key

value

The value for the tag.

See:

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