AWS Fundamentals Logo
AWS Fundamentals
AWS::Interconnect::Connection

Interconnect Connection

Resource Type definition for AWS::Interconnect::Connection. Creates a managed network connection between AWS and a partner cloud service provider.

Properties

7 configurable properties. 1 required. Click a row to see details.

Filter:
PropertyTypeFlags
AttachPoint
AttachPoint
RequiredCreate-only
ActivationKey
string
Create-only
Bandwidth
string
Description
string
EnvironmentId
string
Create-only
RemoteOwnerAccount
string
Write-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ArnstringThe Amazon Resource Name (ARN) of the connection.
BillingTierintegerThe billing tier for the connection.
ConnectionIdstringThe unique identifier for the connection.
OwnerAccountstringThe AWS account ID of the connection owner.
ProviderProviderThe partner cloud service provider.
SharedIdstringThe shared identifier for the connection pairing.
StatestringThe current state of the connection.
TypestringThe type of managed connection.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Interconnect::Connection

Resources:
  MyResource:
    Type: AWS::Interconnect::Connection
    Properties:
      AttachPoint: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

interconnect:CreateConnectioninterconnect:AcceptConnectionProposalinterconnect:TagResource

read

interconnect:GetConnectioninterconnect:ListTagsForResource

update

interconnect:UpdateConnectioninterconnect:GetConnectioninterconnect:TagResourceinterconnect:UntagResourceinterconnect:ListTagsForResource

delete

interconnect:GetConnectioninterconnect:DeleteConnection

list

interconnect:ListConnections

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

ServiceInterconnect
Properties15
Required1
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

AttachPointEnvironmentIdActivationKey

External Links