AWS Fundamentals Logo
AWS Fundamentals
AWS::DataZone::SubscriptionTarget

DataZone SubscriptionTarget

Subscription targets enables one to access the data to which you have subscribed in your projects.

Properties

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

Filter:
PropertyTypeFlags
ApplicableAssetTypes
Array<string>
Required
AuthorizedPrincipals
Array<string>
Required
DomainIdentifier
string
RequiredCreate-onlyWrite-only
EnvironmentIdentifier
string
RequiredCreate-onlyWrite-only
Name
string
Required
SubscriptionTargetConfig
Array<SubscriptionTargetForm>
Required
Type
string
RequiredCreate-only
ManageAccessRole
string
Provider
string

Return Values

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

AttributeTypeDescription
CreatedAtstringThe timestamp of when the subscription target was created.
CreatedBystringThe Amazon DataZone user who created the subscription target.
DomainIdstringThe ID of the Amazon DataZone domain in which subscription target is created.
EnvironmentIdstringThe ID of the environment in which subscription target is created.
IdstringThe ID of the subscription target.
ProjectIdstringThe identifier of the project specified in the subscription target.
UpdatedAtstringThe timestamp of when the subscription target was updated.
UpdatedBystringThe Amazon DataZone user who updated the subscription target.

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

Resources:
  MyResource:
    Type: AWS::DataZone::SubscriptionTarget
    Properties:
      ApplicableAssetTypes: []
      AuthorizedPrincipals: []
      DomainIdentifier: "my-domainidentifier"
      EnvironmentIdentifier: "my-environmentidentifier"
      Name: "my-name"
      SubscriptionTargetConfig: []
      Type: "value"

Required IAM Permissions

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

create

datazone:CreateSubscriptionTargetdatazone:GetSubscriptionTargetiam:PassRole

read

datazone:GetSubscriptionTarget

update

datazone:UpdateSubscriptionTargetdatazone:GetSubscriptionTargetiam:PassRole

delete

datazone:DeleteSubscriptionTarget

list

datazone:ListSubscriptionTargets

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
Properties17
Required7
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.

TypeDomainIdentifierEnvironmentIdentifier

External Links