interface TrustAnchorReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RolesAnywhere.TrustAnchorReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrolesanywhere#TrustAnchorReference |
Java | software.amazon.awscdk.interfaces.rolesanywhere.TrustAnchorReference |
Python | aws_cdk.interfaces.aws_rolesanywhere.TrustAnchorReference |
TypeScript | aws-cdk-lib » interfaces » aws_rolesanywhere » TrustAnchorReference |
A reference to a TrustAnchor resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_rolesanywhere as interfaces_aws_rolesanywhere } from 'aws-cdk-lib/interfaces';
const trustAnchorReference: interfaces_aws_rolesanywhere.TrustAnchorReference = {
trustAnchorArn: 'trustAnchorArn',
trustAnchorId: 'trustAnchorId',
};
Properties
| Name | Type | Description |
|---|---|---|
| trust | string | The ARN of the TrustAnchor resource. |
| trust | string | The TrustAnchorId of the TrustAnchor resource. |
trustAnchorArn
Type:
string
The ARN of the TrustAnchor resource.
trustAnchorId
Type:
string
The TrustAnchorId of the TrustAnchor resource.

.NET
Go
Java
Python
TypeScript