CfnAcmeExternalAccountBindingMixinProps
- class aws_cdk.cfn_property_mixins.aws_certificatemanager.CfnAcmeExternalAccountBindingMixinProps(*, acme_endpoint_arn=None, expiration=None, role_arn=None, tags=None)
Bases:
objectProperties for CfnAcmeExternalAccountBindingPropsMixin.
- Parameters:
acme_endpoint_arn (
Optional[str]) – The ARN of the ACME endpoint this binding is associated with.expiration (
Union[IResolvable,ExpirationProperty,Dict[str,Any],None]) – The expiration configuration for the external account binding.role_arn (
Optional[str]) – The IAM role ARN for cross-account access.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.cfn_property_mixins import aws_certificatemanager as certificatemanager cfn_acme_external_account_binding_mixin_props = 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" )] )
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.