Interface CfnViewProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnViewProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.106.0 (build e852934)",
date="2025-02-06T22:15:52.104Z")
@Stability(Stable)
public interface CfnViewProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnView
.
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.*; Object template; CfnViewProps cfnViewProps = CfnViewProps.builder() .actions(List.of("actions")) .instanceArn("instanceArn") .name("name") .template(template) // the properties below are optional .description("description") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnViewProps
static final class
An implementation forCfnViewProps
-
Method Summary
Modifier and TypeMethodDescriptionstatic CfnViewProps.Builder
builder()
A list of actions possible from the view.default String
The description of the view.The Amazon Resource Name (ARN) of the instance.getName()
The name of the view.getTags()
The tags associated with the view resource (not specific to view version).The view template representing the structure of the view.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getActions
A list of actions possible from the view.- See Also:
-
getInstanceArn
The Amazon Resource Name (ARN) of the instance.- See Also:
-
getName
The name of the view.- See Also:
-
getTemplate
The view template representing the structure of the view.- See Also:
-
getDescription
The description of the view.- See Also:
-
getTags
The tags associated with the view resource (not specific to view version).- See Also:
-
builder
- Returns:
- a
CfnViewProps.Builder
ofCfnViewProps
-