AWS Fundamentals Logo
AWS Fundamentals
AWS::Connect::View

Connect View

Resource Type definition for AWS::Connect::View

Properties

6 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
Actions
Array<string>
Required
InstanceArn
string
Required
Name
string
Required
Template
object
Required
Description
string
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ViewArnstringThe Amazon Resource Name (ARN) of the view.
ViewContentSha256stringThe view content hash.
ViewIdstringThe view id of the view.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Connect::View

Resources:
  MyResource:
    Type: AWS::Connect::View
    Properties:
      InstanceArn: "arn:aws:service:region:account:resource"
      Template: {}
      Actions: []
      Name: "my-name"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

connect:CreateViewconnect:TagResource

read

connect:DescribeView

delete

connect:DeleteViewconnect:UntagResource

list

connect:ListViews

update

connect:UpdateViewMetadataconnect:UpdateViewContentconnect:TagResourceconnect:UntagResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceConnect
Properties9
Required4
TaggingSupported
Primary IDViewArn

Supported Operations

CreateReadDeleteListUpdate

External Links