Show / Hide Table of Contents

Interface ICfnEnvironmentBlueprintConfigurationProps

Properties for defining a CfnEnvironmentBlueprintConfiguration.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnEnvironmentBlueprintConfigurationProps
Syntax (vb)
Public Interface ICfnEnvironmentBlueprintConfigurationProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.DataZone;

             var cfnEnvironmentBlueprintConfigurationProps = new CfnEnvironmentBlueprintConfigurationProps {
                 DomainIdentifier = "domainIdentifier",
                 EnabledRegions = new [] { "enabledRegions" },
                 EnvironmentBlueprintIdentifier = "environmentBlueprintIdentifier",

                 // the properties below are optional
                 EnvironmentRolePermissionBoundary = "environmentRolePermissionBoundary",
                 GlobalParameters = new Dictionary<string, string> {
                     { "globalParametersKey", "globalParameters" }
                 },
                 ManageAccessRoleArn = "manageAccessRoleArn",
                 ProvisioningConfigurations = new [] { new ProvisioningConfigurationProperty {
                     LakeFormationConfiguration = new LakeFormationConfigurationProperty {
                         LocationRegistrationExcludeS3Locations = new [] { "locationRegistrationExcludeS3Locations" },
                         LocationRegistrationRole = "locationRegistrationRole"
                     }
                 } },
                 ProvisioningRoleArn = "provisioningRoleArn",
                 RegionalParameters = new [] { new RegionalParameterProperty {
                     Parameters = new Dictionary<string, string> {
                         { "parametersKey", "parameters" }
                     },
                     Region = "region"
                 } }
             };

Synopsis

Properties

DomainIdentifier

The identifier of the Amazon DataZone domain in which an environment blueprint exists.

EnabledRegions

The enabled AWS Regions specified in a blueprint configuration.

EnvironmentBlueprintIdentifier

The identifier of the environment blueprint.

EnvironmentRolePermissionBoundary

The environment role permission boundary.

GlobalParameters

Region-agnostic environment blueprint parameters.

ManageAccessRoleArn

The ARN of the manage access role.

ProvisioningConfigurations

The provisioning configuration of a blueprint.

ProvisioningRoleArn

The ARN of the provisioning role.

RegionalParameters

The regional parameters of the environment blueprint.

Properties

DomainIdentifier

The identifier of the Amazon DataZone domain in which an environment blueprint exists.

string DomainIdentifier { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-domainidentifier

EnabledRegions

The enabled AWS Regions specified in a blueprint configuration.

string[] EnabledRegions { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-enabledregions

EnvironmentBlueprintIdentifier

The identifier of the environment blueprint.

string EnvironmentBlueprintIdentifier { get; }
Property Value

string

Remarks

In the current release, only the following values are supported: DefaultDataLake and DefaultDataWarehouse .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-environmentblueprintidentifier

EnvironmentRolePermissionBoundary

The environment role permission boundary.

string? EnvironmentRolePermissionBoundary { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-environmentrolepermissionboundary

GlobalParameters

Region-agnostic environment blueprint parameters.

object? GlobalParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-globalparameters

Type union: either Dictionary<string, string> or IResolvable

ManageAccessRoleArn

The ARN of the manage access role.

string? ManageAccessRoleArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-manageaccessrolearn

ProvisioningConfigurations

The provisioning configuration of a blueprint.

object? ProvisioningConfigurations { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningconfigurations

Type union: either IResolvable or (either IResolvable or CfnEnvironmentBlueprintConfiguration.IProvisioningConfigurationProperty)[]

ProvisioningRoleArn

The ARN of the provisioning role.

string? ProvisioningRoleArn { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-provisioningrolearn

RegionalParameters

The regional parameters of the environment blueprint.

object? RegionalParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-environmentblueprintconfiguration.html#cfn-datazone-environmentblueprintconfiguration-regionalparameters

Type union: either IResolvable or (either IResolvable or CfnEnvironmentBlueprintConfiguration.IRegionalParameterProperty)[]

Back to top Generated by DocFX