Class CfnWorkspacePropsMixin.WorkspacePageProperty
Contains information about a page configuration in a workspace, including the view assigned to the page.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.Connect
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnWorkspacePropsMixin.WorkspacePageProperty : CfnWorkspacePropsMixin.IWorkspacePageProperty
Syntax (vb)
Public Class CfnWorkspacePropsMixin.WorkspacePageProperty Implements CfnWorkspacePropsMixin.IWorkspacePageProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Connect;
var workspacePageProperty = new WorkspacePageProperty {
InputData = "inputData",
Page = "page",
ResourceArn = "resourceArn",
Slug = "slug"
};
Synopsis
Constructors
| WorkspacePageProperty() | Contains information about a page configuration in a workspace, including the view assigned to the page. |
Properties
| InputData | A JSON string containing input parameters passed to the view when the page is rendered. |
| Page | The page identifier. |
| ResourceArn | The Amazon Resource Name (ARN) of the view associated with this page. |
| Slug | The URL-friendly identifier for the page. |
Constructors
WorkspacePageProperty()
Contains information about a page configuration in a workspace, including the view assigned to the page.
public WorkspacePageProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.Connect;
var workspacePageProperty = new WorkspacePageProperty {
InputData = "inputData",
Page = "page",
ResourceArn = "resourceArn",
Slug = "slug"
};
Properties
InputData
A JSON string containing input parameters passed to the view when the page is rendered.
public string? InputData { get; set; }
Property Value
Remarks
Page
The page identifier.
public string? Page { get; set; }
Property Value
Remarks
System pages include HOME and AGENT_EXPERIENCE .
ResourceArn
The Amazon Resource Name (ARN) of the view associated with this page.
public string? ResourceArn { get; set; }
Property Value
Remarks
Slug
The URL-friendly identifier for the page.
public string? Slug { get; set; }