interface SourceDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.RolesAnywhere.Mixins.CfnTrustAnchorPropsMixin.SourceDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsrolesanywhere/mixins#CfnTrustAnchorPropsMixin_SourceDataProperty |
Java | software.amazon.awscdk.mixins.preview.services.rolesanywhere.mixins.CfnTrustAnchorPropsMixin.SourceDataProperty |
Python | aws_cdk.mixins_preview.aws_rolesanywhere.mixins.CfnTrustAnchorPropsMixin.SourceDataProperty |
TypeScript | @aws-cdk/mixins-preview » aws_rolesanywhere » mixins » CfnTrustAnchorPropsMixin » SourceDataProperty |
A union object representing the data field of the TrustAnchor depending on its type.
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 sourceDataProperty: rolesanywhere_mixins.CfnTrustAnchorPropsMixin.SourceDataProperty = {
acmPcaArn: 'acmPcaArn',
x509CertificateData: 'x509CertificateData',
};
Properties
| Name | Type | Description |
|---|---|---|
| acm | string | The root certificate of the Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests. |
| x509 | string | The PEM-encoded data for the certificate anchor. |
acmPcaArn?
Type:
string
(optional)
The root certificate of the Private Certificate Authority specified by this ARN is used in trust validation for temporary credential requests.
Included for trust anchors of type AWS_ACM_PCA .
This field is not supported in your region.
x509CertificateData?
Type:
string
(optional)
The PEM-encoded data for the certificate anchor.
Included for trust anchors of type CERTIFICATE_BUNDLE .

.NET
Go
Java
Python
TypeScript