Interface CfnWorkspacePropsMixin.WorkspacePageProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnWorkspacePropsMixin.WorkspacePageProperty.Jsii$Proxy
- Enclosing class:
CfnWorkspacePropsMixin
@Stability(Stable)
public static interface CfnWorkspacePropsMixin.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.cfnpropertymixins.services.connect.*;
WorkspacePageProperty workspacePageProperty = WorkspacePageProperty.builder()
.inputData("inputData")
.page("page")
.resourceArn("resourceArn")
.slug("slug")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspacePropsMixin.WorkspacePagePropertystatic final classAn implementation forCfnWorkspacePropsMixin.WorkspacePageProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA JSON string containing input parameters passed to the view when the page is rendered.default StringgetPage()The page identifier.default StringThe Amazon Resource Name (ARN) of the view associated with this page.default StringgetSlug()The URL-friendly identifier for the page.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getInputData
A JSON string containing input parameters passed to the view when the page is rendered.- See Also:
-
getPage
The page identifier.System pages include
HOMEandAGENT_EXPERIENCE.- See Also:
-
getResourceArn
The Amazon Resource Name (ARN) of the view associated with this page.- See Also:
-
getSlug
The URL-friendly identifier for the page.- See Also:
-
builder
-