interface CfnTrustAnchorMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RolesAnywhere.Mixins.CfnTrustAnchorMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrolesanywhere/mixins#CfnTrustAnchorMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.rolesanywhere.mixins.CfnTrustAnchorMixinProps |
Python | aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnTrustAnchorMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_rolesanywhere » mixins » CfnTrustAnchorMixinProps |
Properties for CfnTrustAnchorPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as rolesanywhere_mixins } from '@aws-cdk/mixins-preview/aws-rolesanywhere';
const cfnTrustAnchorMixinProps: rolesanywhere_mixins.CfnTrustAnchorMixinProps = {
enabled: false,
name: 'name',
notificationSettings: [{
channel: 'channel',
enabled: false,
event: 'event',
threshold: 123,
}],
source: {
sourceData: {
acmPcaArn: 'acmPcaArn',
x509CertificateData: 'x509CertificateData',
},
sourceType: 'sourceType',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| enabled? | boolean | IResolvable | Indicates whether the trust anchor is enabled. |
| name? | string | The name of the trust anchor. |
| notification | IResolvable | (IResolvable | Notification)[] | A list of notification settings to be associated to the trust anchor. |
| source? | IResolvable | Source | The trust anchor type and its related certificate data. |
| tags? | Cfn[] | The tags to attach to the trust anchor. |
enabled?
Type:
boolean | IResolvable
(optional)
Indicates whether the trust anchor is enabled.
name?
Type:
string
(optional)
The name of the trust anchor.
notificationSettings?
Type:
IResolvable | (IResolvable | Notification)[]
(optional)
A list of notification settings to be associated to the trust anchor.
source?
Type:
IResolvable | Source
(optional)
The trust anchor type and its related certificate data.
tags?
Type:
Cfn[]
(optional)
The tags to attach to the trust anchor.

.NET
Go
Java
Python
TypeScript