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

.NET
Go
Java
Python
TypeScript