interface WorkspacePageProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Connect.CfnWorkspacePropsMixin.WorkspacePageProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsconnect#CfnWorkspacePropsMixin_WorkspacePageProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.connect.CfnWorkspacePropsMixin.WorkspacePageProperty |
Python | aws_cdk.cfn_property_mixins.aws_connect.CfnWorkspacePropsMixin.WorkspacePageProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_connect » 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 { aws_connect as connect } from '@aws-cdk/cfn-property-mixins';
const workspacePageProperty: connect.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