CfnAcmeExternalAccountBindingProps
- class aws_cdk.aws_certificatemanager.CfnAcmeExternalAccountBindingProps(*, acme_endpoint_arn, role_arn, expiration=None, tags=None)
Bases:
objectProperties for defining a
CfnAcmeExternalAccountBinding.- Parameters:
acme_endpoint_arn (
str) – The ARN of the ACME endpoint this binding is associated with.role_arn (
str) – The IAM role ARN for cross-account access.expiration (
Union[IResolvable,ExpirationProperty,Dict[str,Any],None]) – The expiration configuration for the external account binding.tags (
Optional[Sequence[Union[TagsItemsProperty,Dict[str,Any]]]]) – Tags associated with the external account binding.
- 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 import aws_certificatemanager as certificatemanager cfn_acme_external_account_binding_props = certificatemanager.CfnAcmeExternalAccountBindingProps( acme_endpoint_arn="acmeEndpointArn", role_arn="roleArn", # the properties below are optional expiration=certificatemanager.CfnAcmeExternalAccountBinding.ExpirationProperty( type="type", value=123 ), tags=[certificatemanager.CfnAcmeExternalAccountBinding.TagsItemsProperty( key="key", value="value" )] )
Attributes
- acme_endpoint_arn
The ARN of the ACME endpoint this binding is associated with.
- expiration
The expiration configuration for the external account binding.
- role_arn
The IAM role ARN for cross-account access.
- tags
Tags associated with the external account binding.