interface SourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.RolesAnywhere.CfnTrustAnchor.SourceProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsrolesanywhere#CfnTrustAnchor_SourceProperty |
Java | software.amazon.awscdk.services.rolesanywhere.CfnTrustAnchor.SourceProperty |
Python | aws_cdk.aws_rolesanywhere.CfnTrustAnchor.SourceProperty |
TypeScript | aws-cdk-lib » aws_rolesanywhere » CfnTrustAnchor » 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 { aws_rolesanywhere as rolesanywhere } from 'aws-cdk-lib';
const sourceProperty: rolesanywhere.CfnTrustAnchor.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
A union object representing the data field of the TrustAnchor depending on its type.
sourceType
Type:
string
The type of the TrustAnchor.

.NET
Go
Java
Python
TypeScript