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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnWorkspace.WorkspacePagePropertystatic final classAn implementation forCfnWorkspace.WorkspacePageProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringA JSON string containing input parameters passed to the view when the page is rendered.getPage()The page identifier.The 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
-
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:
-
getInputData
A JSON string containing input parameters passed to the view when the page is rendered.- See Also:
-
getSlug
The URL-friendly identifier for the page.- See Also:
-
builder
-