interface InstanceProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.DeviceFarm.InstanceProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsdevicefarm#InstanceProfileReference |
Java | software.amazon.awscdk.interfaces.devicefarm.InstanceProfileReference |
Python | aws_cdk.interfaces.aws_devicefarm.InstanceProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_devicefarm » InstanceProfileReference |
A reference to a InstanceProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devicefarm as interfaces_aws_devicefarm } from 'aws-cdk-lib/interfaces';
const instanceProfileReference: interfaces_aws_devicefarm.InstanceProfileReference = {
instanceProfileArn: 'instanceProfileArn',
};
Properties
| Name | Type | Description |
|---|---|---|
| instance | string | The Arn of the InstanceProfile resource. |
instanceProfileArn
Type:
string
The Arn of the InstanceProfile resource.

.NET
Go
Java
Python
TypeScript