AWS Fundamentals Logo
AWS Fundamentals
AWS::Connect::AgentStatus

Connect AgentStatus

Resource Type definition for AWS::Connect::AgentStatus

Properties

8 configurable properties. 3 required. Click a row to see details.

Filter:
PropertyTypeFlags
InstanceArn
string
Required
Name
string
Required
State
string
Required
Description
string
DisplayOrder
integer
ResetOrderNumber
boolean
Tags
Array<Tag>
Type
string

Return Values

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

AttributeTypeDescription
AgentStatusArnstringThe Amazon Resource Name (ARN) of the agent status.
LastModifiedRegionstringLast modified region.
LastModifiedTimenumberLast modified time.

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

Resources:
  MyResource:
    Type: AWS::Connect::AgentStatus
    Properties:
      InstanceArn: "arn:aws:service:region:account:resource"
      Name: "my-name"
      State: "ENABLED"
      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:CreateAgentStatusconnect:TagResourceconnect:ListAgentStatuses

read

connect:DescribeAgentStatus

delete

update

connect:UpdateAgentStatusconnect:UntagResourceconnect:TagResource

list

connect:ListAgentStatuses

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
Properties11
Required3
TaggingSupported
Primary IDAgentStatusArn

Supported Operations

CreateReadDeleteUpdateList

External Links