interface InstanceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SSO.InstanceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssso#InstanceReference |
Java | software.amazon.awscdk.interfaces.sso.InstanceReference |
Python | aws_cdk.interfaces.aws_sso.InstanceReference |
TypeScript | aws-cdk-lib » interfaces » aws_sso » InstanceReference |
A reference to a Instance resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sso as interfaces_aws_sso } from 'aws-cdk-lib/interfaces';
const instanceReference: interfaces_aws_sso.InstanceReference = {
instanceArn: 'instanceArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The InstanceArn of the Instance resource. |
instanceArn
Type:
string
The InstanceArn of the Instance resource.

.NET
Go
Java
Python
TypeScript