interface SourceDataProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.RolesAnywhere.CfnTrustAnchorPropsMixin.SourceDataProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsrolesanywhere#CfnTrustAnchorPropsMixin_SourceDataProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.rolesanywhere.CfnTrustAnchorPropsMixin.SourceDataProperty |
Python | aws_cdk.cfn_property_mixins.aws_rolesanywhere.CfnTrustAnchorPropsMixin.SourceDataProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_rolesanywhere » 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 { aws_rolesanywhere as rolesanywhere } from '@aws-cdk/cfn-property-mixins';
const sourceDataProperty: rolesanywhere.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