interface ProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.RolesAnywhere.ProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsrolesanywhere#ProfileReference |
Java | software.amazon.awscdk.interfaces.rolesanywhere.ProfileReference |
Python | aws_cdk.interfaces.aws_rolesanywhere.ProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_rolesanywhere » ProfileReference |
A reference to a Profile 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 profileReference: interfaces_aws_rolesanywhere.ProfileReference = {
profileArn: 'profileArn',
profileId: 'profileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| profile | string | The ARN of the Profile resource. |
| profile | string | The ProfileId of the Profile resource. |
profileArn
Type:
string
The ARN of the Profile resource.
profileId
Type:
string
The ProfileId of the Profile resource.

.NET
Go
Java
Python
TypeScript