interface InstanceStorageConfigReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.InstanceStorageConfigReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#InstanceStorageConfigReference |
Java | software.amazon.awscdk.interfaces.connect.InstanceStorageConfigReference |
Python | aws_cdk.interfaces.aws_connect.InstanceStorageConfigReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » InstanceStorageConfigReference |
A reference to a InstanceStorageConfig resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_aws_connect } from 'aws-cdk-lib/interfaces';
const instanceStorageConfigReference: interfaces_aws_connect.InstanceStorageConfigReference = {
associationId: 'associationId',
instanceArn: 'instanceArn',
resourceType: 'resourceType',
};
Properties
| Name | Type | Description |
|---|---|---|
| association | string | The AssociationId of the InstanceStorageConfig resource. |
| instance | string | The InstanceArn of the InstanceStorageConfig resource. |
| resource | string | The ResourceType of the InstanceStorageConfig resource. |
associationId
Type:
string
The AssociationId of the InstanceStorageConfig resource.
instanceArn
Type:
string
The InstanceArn of the InstanceStorageConfig resource.
resourceType
Type:
string
The ResourceType of the InstanceStorageConfig resource.

.NET
Go
Java
Python
TypeScript