Interface CfnWorkspace.WorkspacePageProperty

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

@Stability(Stable) public static interface CfnWorkspace.WorkspacePageProperty extends software.amazon.jsii.JsiiSerializable
Contains information about a page configuration in a workspace, including the view assigned to the page.

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.connect.*;
 WorkspacePageProperty workspacePageProperty = WorkspacePageProperty.builder()
         .page("page")
         .resourceArn("resourceArn")
         // the properties below are optional
         .inputData("inputData")
         .slug("slug")
         .build();
 

See Also: