CfnAcmeEndpointProps
- class aws_cdk.aws_certificatemanager.CfnAcmeEndpointProps(*, authorization_behavior, certificate_authority, certificate_tags=None, contact=None, tags=None)
Bases:
objectProperties for defining a
CfnAcmeEndpoint.- Parameters:
authorization_behavior (
str) – The authorization behavior for the ACME endpoint.certificate_authority (
Union[IResolvable,CertificateAuthorityProperty,Dict[str,Any]]) – The certificate authority configuration for the ACME endpoint.certificate_tags (
Union[IResolvable,Sequence[Union[IResolvable,CfnTag,Dict[str,Any]]],None]) – Tags applied to certificates issued via this endpoint.contact (
Optional[str]) – Whether contact information is required for the ACME endpoint.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – Tags associated with the ACME endpoint.
- See:
- ExampleMetadata:
fixture=_generated
Example:
from aws_cdk import CfnTag # The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_certificatemanager as certificatemanager cfn_acme_endpoint_props = certificatemanager.CfnAcmeEndpointProps( authorization_behavior="authorizationBehavior", certificate_authority=certificatemanager.CfnAcmeEndpoint.CertificateAuthorityProperty( public_certificate_authority=certificatemanager.CfnAcmeEndpoint.PublicCertificateAuthorityProperty( allowed_key_algorithms=["allowedKeyAlgorithms"] ) ), # the properties below are optional certificate_tags=[CfnTag( key="key", value="value" )], contact="contact", tags=[certificatemanager.CfnAcmeEndpoint.TagsItemsProperty( key="key", value="value" )] )
Attributes
- authorization_behavior
The authorization behavior for the ACME endpoint.
- certificate_authority
The certificate authority configuration for the ACME endpoint.
- certificate_tags
Tags applied to certificates issued via this endpoint.
- contact
Whether contact information is required for the ACME endpoint.
- tags
Tags associated with the ACME endpoint.