AWS Fundamentals Logo
AWS Fundamentals
AWS::DataZone::EnvironmentProfile

DataZone EnvironmentProfile

AWS Datazone Environment Profile is pre-configured set of resources and blueprints that provide reusable templates for creating environments.

Properties

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

Filter:
PropertyTypeFlags
AwsAccountId
string
Required
AwsAccountRegion
string
Required
DomainIdentifier
string
RequiredCreate-onlyWrite-only
EnvironmentBlueprintIdentifier
string
RequiredCreate-onlyWrite-only
Name
string
Required
ProjectIdentifier
string
RequiredCreate-onlyWrite-only
Description
string
UserParameters
Array<EnvironmentParameter>

Return Values

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

AttributeTypeDescription
CreatedAtstringThe timestamp of when this environment profile was created.
CreatedBystringThe Amazon DataZone user who created this environment profile.
DomainIdstringThe ID of the Amazon DataZone domain in which this environment profile is created.
EnvironmentBlueprintIdstringThe ID of the blueprint with which this environment profile is created.
IdstringThe ID of this Amazon DataZone environment profile.
ProjectIdstringThe identifier of the project in which to create the environment profile.
UpdatedAtstringThe timestamp of when this environment profile was updated.

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

Resources:
  MyResource:
    Type: AWS::DataZone::EnvironmentProfile
    Properties:
      EnvironmentBlueprintIdentifier: "my-environmentblueprintidentifier"
      ProjectIdentifier: "my-projectidentifier"
      DomainIdentifier: "my-domainidentifier"
      AwsAccountId: "my-awsaccountid"
      AwsAccountRegion: "value"
      Name: "my-name"
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

datazone:CreateEnvironmentProfiledatazone:GetEnvironmentProfile

read

datazone:GetEnvironmentProfile

update

datazone:UpdateEnvironmentProfiledatazone:GetEnvironmentProfile

delete

datazone:DeleteEnvironmentProfiledatazone:GetEnvironmentProfile

list

datazone:ListEnvironmentProfiles

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
Properties15
Required6
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.

DomainIdentifierEnvironmentBlueprintIdentifierProjectIdentifier

External Links