interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RolesAnywhere.Mixins.CfnTrustAnchorPropsMixin.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrolesanywhere/mixins#CfnTrustAnchorPropsMixin_SourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.rolesanywhere.mixins.CfnTrustAnchorPropsMixin.SourceProperty |
Python | aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnTrustAnchorPropsMixin.SourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rolesanywhere » mixins » CfnTrustAnchorPropsMixin » SourceProperty |
Object representing the TrustAnchor type and its related certificate data.
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 sourceProperty: rolesanywhere_mixins.CfnTrustAnchorPropsMixin.SourceProperty = {
sourceData: {
acmPcaArn: 'acmPcaArn',
x509CertificateData: 'x509CertificateData',
},
sourceType: 'sourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | IResolvable | Source | A union object representing the data field of the TrustAnchor depending on its type. |
| source | string | The type of the TrustAnchor. |
sourceData?
Type:
IResolvable | Source
(optional)
A union object representing the data field of the TrustAnchor depending on its type.
sourceType?
Type:
string
(optional)
The type of the TrustAnchor.

.NET
Go
Java
Python
TypeScript