interface StorageProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_deadline.StorageProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdeadline#StorageProfileReference |
Java | software.amazon.awscdk.services.deadline.StorageProfileReference |
Python | aws_cdk.aws_deadline.StorageProfileReference |
TypeScript | aws-cdk-lib » aws_deadline » StorageProfileReference |
A reference to a StorageProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_deadline as deadline } from 'aws-cdk-lib';
const storageProfileReference: deadline.StorageProfileReference = {
farmId: 'farmId',
storageProfileId: 'storageProfileId',
};
Properties
| Name | Type | Description |
|---|---|---|
| farm | string | The FarmId of the StorageProfile resource. |
| storage | string | The StorageProfileId of the StorageProfile resource. |
farmId
Type:
string
The FarmId of the StorageProfile resource.
storageProfileId
Type:
string
The StorageProfileId of the StorageProfile resource.

.NET
Go
Java
Python
TypeScript