interface CfnEnvironmentBlueprintConfigurationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnEnvironmentBlueprintConfigurationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnEnvironmentBlueprintConfigurationProps |
Java | software.amazon.awscdk.services.datazone.CfnEnvironmentBlueprintConfigurationProps |
Python | aws_cdk.aws_datazone.CfnEnvironmentBlueprintConfigurationProps |
TypeScript | aws-cdk-lib » aws_datazone » CfnEnvironmentBlueprintConfigurationProps |
Properties for defining a CfnEnvironmentBlueprintConfiguration.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const cfnEnvironmentBlueprintConfigurationProps: datazone.CfnEnvironmentBlueprintConfigurationProps = {
domainIdentifier: 'domainIdentifier',
enabledRegions: ['enabledRegions'],
environmentBlueprintIdentifier: 'environmentBlueprintIdentifier',
// the properties below are optional
environmentRolePermissionBoundary: 'environmentRolePermissionBoundary',
manageAccessRoleArn: 'manageAccessRoleArn',
provisioningConfigurations: [{
lakeFormationConfiguration: {
locationRegistrationExcludeS3Locations: ['locationRegistrationExcludeS3Locations'],
locationRegistrationRole: 'locationRegistrationRole',
},
}],
provisioningRoleArn: 'provisioningRoleArn',
regionalParameters: [{
parameters: {
parametersKey: 'parameters',
},
region: 'region',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The identifier of the Amazon DataZone domain in which an environment blueprint exists. |
| enabled | string[] | The enabled AWS Regions specified in a blueprint configuration. |
| environment | string | The identifier of the environment blueprint. |
| environment | string | The environment role permission boundary. |
| manage | string | The ARN of the manage access role. |
| provisioning | IResolvable | (IResolvable | Provisioning)[] | The provisioning configuration of a blueprint. |
| provisioning | string | The ARN of the provisioning role. |
| regional | IResolvable | (IResolvable | Regional)[] | The regional parameters of the environment blueprint. |
domainIdentifier
Type:
string
The identifier of the Amazon DataZone domain in which an environment blueprint exists.
enabledRegions
Type:
string[]
The enabled AWS Regions specified in a blueprint configuration.
environmentBlueprintIdentifier
Type:
string
The identifier of the environment blueprint.
In the current release, only the following values are supported: DefaultDataLake and DefaultDataWarehouse .
environmentRolePermissionBoundary?
Type:
string
(optional)
The environment role permission boundary.
manageAccessRoleArn?
Type:
string
(optional)
The ARN of the manage access role.
provisioningConfigurations?
Type:
IResolvable | (IResolvable | Provisioning)[]
(optional)
The provisioning configuration of a blueprint.
provisioningRoleArn?
Type:
string
(optional)
The ARN of the provisioning role.
regionalParameters?
Type:
IResolvable | (IResolvable | Regional)[]
(optional)
The regional parameters of the environment blueprint.

.NET
Go
Java
Python
TypeScript