AWS Fundamentals Logo
AWS Fundamentals
AWS::DataZone::Connection

DataZone Connection

Connections enables users to connect their DataZone resources (domains, projects, and environments) to external resources/services (data, compute, etc)

Properties

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

Filter:
PropertyTypeFlags
DomainIdentifier
string
RequiredCreate-onlyWrite-only
Name
string
RequiredCreate-only
AwsLocation
AwsLocation
Write-only
Description
string
EnableTrustedIdentityPropagation
boolean
Create-onlyWrite-only
EnvironmentIdentifier
string
Create-onlyWrite-only
ProjectIdentifier
string
Create-onlyWrite-only
Props
ConnectionPropertiesInput
Write-only
Scope
string
Create-onlyWrite-only

Return Values

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

AttributeTypeDescription
ConnectionIdstringThe ID of the connection.
DomainIdstringThe ID of the domain in which the connection is created.
DomainUnitIdstringThe ID of the domain unit in which the connection is created.
EnvironmentIdstringThe ID of the environment in which the connection is created.
EnvironmentUserRolestringThe role of the user in the environment.
ProjectIdstringThe ID of the project in which the connection is created.
Typestring-

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

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

Resources:
  MyResource:
    Type: AWS::DataZone::Connection
    Properties:
      DomainIdentifier: "my-domainidentifier"
      Name: "my-name"
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

datazone:CreateConnectiondatazone:GetConnectiondatazone:DeleteConnectiondatazone:ListEnvironments

read

datazone:GetConnection

update

datazone:UpdateConnectiondatazone:GetConnectiondatazone:DeleteConnection

delete

datazone:DeleteConnectiondatazone:GetConnection

list

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

ServiceDataZone
Properties16
Required2
TaggingNot supported
Primary IDDomainId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

DomainIdentifierEnableTrustedIdentityPropagationEnvironmentIdentifierProjectIdentifierNameScope

External Links