AWS Fundamentals Logo
AWS Fundamentals
AWS::FinSpace::Environment

FinSpace Environment

An example resource schema demonstrating some basic constructs and validation rules.

Properties

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

Filter:
PropertyTypeFlags
Name
string
Required
DataBundles
Array<string>
Create-onlyDeprecated
Description
string
FederationMode
string
FederationParameters
FederationParameters
Create-only
KmsKeyId
string
Create-only
SuperuserParameters
SuperuserParameters
Create-onlyWrite-only
Tags
Array<Tag>
Create-onlyWrite-only

Return Values

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

AttributeTypeDescription
AwsAccountIdstringAWS account ID associated with the Environment
DedicatedServiceAccountIdstringID for FinSpace created account used to store Environment artifacts
EnvironmentArnstringARN of the Environment
EnvironmentIdstringUnique identifier for representing FinSpace Environment
EnvironmentUrlstringURL used to login to the Environment
SageMakerStudioDomainUrlstringSageMaker Studio Domain URL associated with the Environment
StatusstringState of the Environment

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::FinSpace::Environment

Resources:
  MyResource:
    Type: AWS::FinSpace::Environment
    Properties:
      Name: "my-name"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

finspace:CreateEnvironmentfinspace:GetEnvironmentfinspace:ListEnvironmentssts:AssumeRole

read

finspace:GetEnvironment

update

finspace:UpdateEnvironment

delete

finspace:DeleteEnvironmentfinspace:GetEnvironment

list

finspace:ListEnvironments

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

ServiceFinSpace
Properties15
Required1
TaggingSupported
Primary IDEnvironmentId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

KmsKeyIdSuperuserParametersFederationParametersDataBundlesTags

External Links