interface CfnEnvironmentProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnEnvironmentProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnEnvironmentProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnEnvironmentProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnEnvironmentProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnEnvironmentProfileMixinProps |
Properties for CfnEnvironmentProfilePropsMixin.
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 cfnEnvironmentProfileMixinProps: datazone_mixins.CfnEnvironmentProfileMixinProps = {
awsAccountId: 'awsAccountId',
awsAccountRegion: 'awsAccountRegion',
description: 'description',
domainIdentifier: 'domainIdentifier',
environmentBlueprintIdentifier: 'environmentBlueprintIdentifier',
name: 'name',
projectIdentifier: 'projectIdentifier',
userParameters: [{
name: 'name',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The identifier of an AWS account in which an environment profile exists. |
| aws | string | The AWS Region in which an environment profile exists. |
| description? | string | The description of the environment profile. |
| domain | string | The identifier of the Amazon DataZone domain in which the environment profile exists. |
| environment | string | The identifier of a blueprint with which an environment profile is created. |
| name? | string | The name of the environment profile. |
| project | string | The identifier of a project in which an environment profile exists. |
| user | IResolvable | (IResolvable | Environment)[] | The user parameters of this Amazon DataZone environment profile. |
awsAccountId?
Type:
string
(optional)
The identifier of an AWS account in which an environment profile exists.
awsAccountRegion?
Type:
string
(optional)
The AWS Region in which an environment profile exists.
description?
Type:
string
(optional)
The description of the environment profile.
domainIdentifier?
Type:
string
(optional)
The identifier of the Amazon DataZone domain in which the environment profile exists.
environmentBlueprintIdentifier?
Type:
string
(optional)
The identifier of a blueprint with which an environment profile is created.
name?
Type:
string
(optional)
The name of the environment profile.
projectIdentifier?
Type:
string
(optional)
The identifier of a project in which an environment profile exists.
userParameters?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The user parameters of this Amazon DataZone environment profile.

.NET
Go
Java
Python
TypeScript