interface CfnEnvironmentBlueprintConfigurationMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnEnvironmentBlueprintConfigurationMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnEnvironmentBlueprintConfigurationMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnEnvironmentBlueprintConfigurationMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentBlueprintConfigurationMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnEnvironmentBlueprintConfigurationMixinProps |
Properties for CfnEnvironmentBlueprintConfigurationPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as datazone_mixins } from '@aws-cdk/mixins-preview/aws-datazone';
const cfnEnvironmentBlueprintConfigurationMixinProps: datazone_mixins.CfnEnvironmentBlueprintConfigurationMixinProps = {
domainIdentifier: 'domainIdentifier',
enabledRegions: ['enabledRegions'],
environmentBlueprintIdentifier: 'environmentBlueprintIdentifier',
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
(optional)
The identifier of the Amazon DataZone domain in which an environment blueprint exists.
enabledRegions?
Type:
string[]
(optional)
The enabled AWS Regions specified in a blueprint configuration.
environmentBlueprintIdentifier?
Type:
string
(optional)
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