interface ExpirationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.CertificateManager.CfnAcmeExternalAccountBinding.ExpirationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awscertificatemanager#CfnAcmeExternalAccountBinding_ExpirationProperty |
Java | software.amazon.awscdk.services.certificatemanager.CfnAcmeExternalAccountBinding.ExpirationProperty |
Python | aws_cdk.aws_certificatemanager.CfnAcmeExternalAccountBinding.ExpirationProperty |
TypeScript | aws-cdk-lib » aws_certificatemanager » CfnAcmeExternalAccountBinding » ExpirationProperty |
The expiration configuration for the external account binding.
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 expirationProperty: certificatemanager.CfnAcmeExternalAccountBinding.ExpirationProperty = {
type: 'type',
value: 123,
};
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The time unit for the expiration value. |
| value | number | The expiration value. |
type
Type:
string
The time unit for the expiration value.
value
Type:
number
The expiration value.

.NET
Go
Java
Python
TypeScript