interface StorageConnectorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.AppStream.Mixins.CfnStackPropsMixin.StorageConnectorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsappstream/mixins#CfnStackPropsMixin_StorageConnectorProperty |
Java | software.amazon.awscdk.mixins.preview.services.appstream.mixins.CfnStackPropsMixin.StorageConnectorProperty |
Python | aws_cdk.mixins_preview.aws_appstream.mixins.CfnStackPropsMixin.StorageConnectorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_appstream » mixins » 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 { mixins as appstream_mixins } from '@aws-cdk/mixins-preview/aws-appstream';
const storageConnectorProperty: appstream_mixins.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