interface ProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Route53Profiles.ProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsroute53profiles#ProfileReference |
Java | software.amazon.awscdk.interfaces.route53profiles.ProfileReference |
Python | aws_cdk.interfaces.aws_route53profiles.ProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_route53profiles » 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_route53profiles as interfaces_aws_route53profiles } from 'aws-cdk-lib/interfaces';
const profileReference: interfaces_aws_route53profiles.ProfileReference = {
profileArn: 'profileArn',
profileId: 'profileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| profile | string | The ARN of the Profile resource. |
| profile | string | The Id of the Profile resource. |
profileArn
Type:
string
The ARN of the Profile resource.
profileId
Type:
string
The Id of the Profile resource.

.NET
Go
Java
Python
TypeScript