InstanceStorageConfigReference
- class aws_cdk.aws_connect.InstanceStorageConfigReference(*, association_id, instance_arn, resource_type)
Bases:
object
A reference to a InstanceStorageConfig resource.
- Parameters:
association_id (
str
) – The AssociationId of the InstanceStorageConfig resource.instance_arn (
str
) – The InstanceArn of the InstanceStorageConfig resource.resource_type (
str
) – The ResourceType of the InstanceStorageConfig resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_connect as connect instance_storage_config_reference = connect.InstanceStorageConfigReference( association_id="associationId", instance_arn="instanceArn", resource_type="resourceType" )
Attributes
- association_id
The AssociationId of the InstanceStorageConfig resource.
- instance_arn
The InstanceArn of the InstanceStorageConfig resource.
- resource_type
The ResourceType of the InstanceStorageConfig resource.