AWS Fundamentals Logo
AWS Fundamentals
AWS::Connect::TrafficDistributionGroup

Connect TrafficDistributionGroup

Resource Type definition for AWS::Connect::TrafficDistributionGroup

Properties

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

Filter:
PropertyTypeFlags
InstanceArn
string
Required
Name
string
RequiredCreate-only
Description
string
Create-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
IsDefaultbooleanIf this is the default traffic distribution group.
StatusstringThe status of the traffic distribution group.
TrafficDistributionGroupArnstringThe identifier of the traffic distribution group.

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::TrafficDistributionGroup

Resources:
  MyResource:
    Type: AWS::Connect::TrafficDistributionGroup
    Properties:
      InstanceArn: "arn:aws:service:region:account:resource"
      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:CreateTrafficDistributionGroupconnect:DescribeTrafficDistributionGroupconnect:TagResource

read

connect:DescribeTrafficDistributionGroup

update

connect:TagResourceconnect:UntagResource

delete

connect:DeleteTrafficDistributionGroupconnect:DescribeTrafficDistributionGroupconnect:UntagResource

list

connect:ListTrafficDistributionGroups

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
Properties7
Required2
TaggingSupported
Primary IDTrafficDistributionGroupArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DescriptionName

External Links