Interface CfnStack.StorageConnectorProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStack.StorageConnectorProperty.Jsii$Proxy
Enclosing class:
CfnStack

@Stability(Stable) public static interface CfnStack.StorageConnectorProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.appstream.*;
 StorageConnectorProperty storageConnectorProperty = StorageConnectorProperty.builder()
         .connectorType("connectorType")
         // the properties below are optional
         .domains(List.of("domains"))
         .resourceIdentifier("resourceIdentifier")
         .build();
 

See Also: