interface CfnAcmeExternalAccountBindingMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CertificateManager.CfnAcmeExternalAccountBindingMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscertificatemanager#CfnAcmeExternalAccountBindingMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.certificatemanager.CfnAcmeExternalAccountBindingMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_certificatemanager.CfnAcmeExternalAccountBindingMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_certificatemanager » CfnAcmeExternalAccountBindingMixinProps |
Properties for CfnAcmeExternalAccountBindingPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_certificatemanager as certificatemanager } from '@aws-cdk/cfn-property-mixins';
const cfnAcmeExternalAccountBindingMixinProps: certificatemanager.CfnAcmeExternalAccountBindingMixinProps = {
acmeEndpointArn: 'acmeEndpointArn',
expiration: {
type: 'type',
value: 123,
},
roleArn: 'roleArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| acme | string | The ARN of the ACME endpoint this binding is associated with. |
| expiration? | IResolvable | Expiration | The expiration configuration for the external account binding. |
| role | string | The IAM role ARN for cross-account access. |
| tags? | Tags[] | Tags associated with the external account binding. |
acmeEndpointArn?
Type:
string
(optional)
The ARN of the ACME endpoint this binding is associated with.
expiration?
Type:
IResolvable | Expiration
(optional)
The expiration configuration for the external account binding.
roleArn?
Type:
string
(optional)
The IAM role ARN for cross-account access.
tags?
Type:
Tags[]
(optional)
Tags associated with the external account binding.

.NET
Go
Java
Python
TypeScript