Interface CfnStackProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnStackProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-18T17:54:12.698Z") @Stability(Stable) public interface CfnStackProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnStack.

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.*;
 CfnStackProps cfnStackProps = CfnStackProps.builder()
         .accessEndpoints(List.of(AccessEndpointProperty.builder()
                 .endpointType("endpointType")
                 .vpceId("vpceId")
                 .build()))
         .applicationSettings(ApplicationSettingsProperty.builder()
                 .enabled(false)
                 // the properties below are optional
                 .settingsGroup("settingsGroup")
                 .build())
         .attributesToDelete(List.of("attributesToDelete"))
         .deleteStorageConnectors(false)
         .description("description")
         .displayName("displayName")
         .embedHostDomains(List.of("embedHostDomains"))
         .feedbackUrl("feedbackUrl")
         .name("name")
         .redirectUrl("redirectUrl")
         .storageConnectors(List.of(StorageConnectorProperty.builder()
                 .connectorType("connectorType")
                 // the properties below are optional
                 .domains(List.of("domains"))
                 .resourceIdentifier("resourceIdentifier")
                 .build()))
         .streamingExperienceSettings(StreamingExperienceSettingsProperty.builder()
                 .preferredProtocol("preferredProtocol")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .userSettings(List.of(UserSettingProperty.builder()
                 .action("action")
                 .permission("permission")
                 // the properties below are optional
                 .maximumLength(123)
                 .build()))
         .build();
 

See Also: