interface StorageConnectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppStream.CfnStackPropsMixin.StorageConnectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappstream#CfnStackPropsMixin_StorageConnectorProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appstream.CfnStackPropsMixin.StorageConnectorProperty |
Python | aws_cdk.cfn_property_mixins.aws_appstream.CfnStackPropsMixin.StorageConnectorProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appstream » CfnStackPropsMixin » StorageConnectorProperty |
A connector that enables persistent storage for users.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_appstream as appstream } from '@aws-cdk/cfn-property-mixins';
const storageConnectorProperty: appstream.CfnStackPropsMixin.StorageConnectorProperty = {
connectorType: 'connectorType',
domains: ['domains'],
resourceIdentifier: 'resourceIdentifier',
};
Properties
| Name | Type | Description |
|---|---|---|
| connector | string | The type of storage connector. |
| domains? | string[] | The names of the domains for the account. |
| resource | string | The ARN of the storage connector. |
connectorType?
Type:
string
(optional)
The type of storage connector.
domains?
Type:
string[]
(optional)
The names of the domains for the account.
resourceIdentifier?
Type:
string
(optional)
The ARN of the storage connector.

.NET
Go
Java
Python
TypeScript