interface WorkspacePageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnWorkspace.WorkspacePageProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnWorkspace_WorkspacePageProperty |
Java | software.amazon.awscdk.services.connect.CfnWorkspace.WorkspacePageProperty |
Python | aws_cdk.aws_connect.CfnWorkspace.WorkspacePageProperty |
TypeScript | aws-cdk-lib » aws_connect » CfnWorkspace » WorkspacePageProperty |
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 { aws_connect as connect } from 'aws-cdk-lib';
const workspacePageProperty: connect.CfnWorkspace.WorkspacePageProperty = {
page: 'page',
resourceArn: 'resourceArn',
// the properties below are optional
inputData: 'inputData',
slug: 'slug',
};
Properties
| Name | Type | Description |
|---|---|---|
| page | string | The page identifier. |
| resource | string | The Amazon Resource Name (ARN) of the view associated with this page. |
| input | string | A JSON string containing input parameters passed to the view when the page is rendered. |
| slug? | string | The URL-friendly identifier for the page. |
page
Type:
string
The page identifier.
System pages include HOME and AGENT_EXPERIENCE .
resourceArn
Type:
string
The Amazon Resource Name (ARN) of the view associated with this page.
inputData?
Type:
string
(optional)
A JSON string containing input parameters passed to the view when the page is rendered.
slug?
Type:
string
(optional)
The URL-friendly identifier for the page.

.NET
Go
Java
Python
TypeScript