interface CfnAcmeExternalAccountBindingProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeExternalAccountBindingProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeExternalAccountBindingProps |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeExternalAccountBindingProps |
Python | aws_cdk.aws_certificatemanager.CfnAcmeExternalAccountBindingProps |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeExternalAccountBindingProps |
Properties for defining a CfnAcmeExternalAccountBinding.
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-lib';
const cfnAcmeExternalAccountBindingProps: certificatemanager.CfnAcmeExternalAccountBindingProps = {
acmeEndpointArn: 'acmeEndpointArn',
roleArn: 'roleArn',
// the properties below are optional
expiration: {
type: 'type',
value: 123,
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| acme | string | The ARN of the ACME endpoint this binding is associated with. |
| role | string | The IAM role ARN for cross-account access. |
| expiration? | IResolvable | Expiration | The expiration configuration for the external account binding. |
| tags? | Tags[] | Tags associated with the external account binding. |
acmeEndpointArn
Type:
string
The ARN of the ACME endpoint this binding is associated with.
roleArn
Type:
string
The IAM role ARN for cross-account access.
expiration?
Type:
IResolvable | Expiration
(optional)
The expiration configuration for the external account binding.
tags?
Type:
Tags[]
(optional)
Tags associated with the external account binding.

.NET
Go
Java
Python
TypeScript