CfnEnvironmentBlueprintConfigurationProps
- class aws_cdk.aws_datazone.CfnEnvironmentBlueprintConfigurationProps(*, domain_identifier, enabled_regions, environment_blueprint_identifier, manage_access_role_arn=None, provisioning_role_arn=None, regional_parameters=None)
Bases:
object
Properties for defining a
CfnEnvironmentBlueprintConfiguration
.- Parameters:
domain_identifier (
str
) – The identifier of the Amazon DataZone domain in which an environment blueprint exists.enabled_regions (
Sequence
[str
]) – The enabled AWS Regions specified in a blueprint configuration.environment_blueprint_identifier (
str
) – The identifier of the environment blueprint. In the current release, only the following values are supported:DefaultDataLake
andDefaultDataWarehouse
.manage_access_role_arn (
Optional
[str
]) – The ARN of the manage access role.provisioning_role_arn (
Optional
[str
]) – The ARN of the provisioning role.regional_parameters (
Union
[IResolvable
,Sequence
[Union
[IResolvable
,RegionalParameterProperty
,Dict
[str
,Any
]]],None
]) – The regional parameters of the environment blueprint.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_datazone as datazone cfn_environment_blueprint_configuration_props = datazone.CfnEnvironmentBlueprintConfigurationProps( domain_identifier="domainIdentifier", enabled_regions=["enabledRegions"], environment_blueprint_identifier="environmentBlueprintIdentifier", # the properties below are optional manage_access_role_arn="manageAccessRoleArn", provisioning_role_arn="provisioningRoleArn", regional_parameters=[datazone.CfnEnvironmentBlueprintConfiguration.RegionalParameterProperty( parameters={ "parameters_key": "parameters" }, region="region" )] )
Attributes
- domain_identifier
The identifier of the Amazon DataZone domain in which an environment blueprint exists.
- enabled_regions
The enabled AWS Regions specified in a blueprint configuration.
- environment_blueprint_identifier
The identifier of the environment blueprint.
In the current release, only the following values are supported:
DefaultDataLake
andDefaultDataWarehouse
.
- manage_access_role_arn
The ARN of the manage access role.
- provisioning_role_arn
The ARN of the provisioning role.
- regional_parameters
The regional parameters of the environment blueprint.