interface CfnProjectMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnProjectMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnProjectMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnProjectMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnProjectMixinProps |
Properties for CfnProjectPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-project.html
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 cfnProjectMixinProps: datazone_mixins.CfnProjectMixinProps = {
description: 'description',
domainIdentifier: 'domainIdentifier',
domainUnitId: 'domainUnitId',
glossaryTerms: ['glossaryTerms'],
name: 'name',
projectProfileId: 'projectProfileId',
projectProfileVersion: 'projectProfileVersion',
userParameters: [{
environmentConfigurationName: 'environmentConfigurationName',
environmentId: 'environmentId',
environmentParameters: [{
name: 'name',
value: 'value',
}],
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of a project. |
| domain | string | The identifier of a Amazon DataZone domain where the project exists. |
| domain | string | The ID of the domain unit. |
| glossary | string[] | The glossary terms that can be used in this Amazon DataZone project. |
| name? | string | The name of a project. |
| project | string | The ID of the project profile. |
| project | string | The project profile version to which the project should be updated. |
| user | IResolvable | (IResolvable | Environment)[] | The user parameters of the project. |
description?
Type:
string
(optional)
The description of a project.
domainIdentifier?
Type:
string
(optional)
The identifier of a Amazon DataZone domain where the project exists.
domainUnitId?
Type:
string
(optional)
The ID of the domain unit.
This parameter is not required and if it is not specified, then the project is created at the root domain unit level.
glossaryTerms?
Type:
string[]
(optional)
The glossary terms that can be used in this Amazon DataZone project.
name?
Type:
string
(optional)
The name of a project.
projectProfileId?
Type:
string
(optional)
The ID of the project profile.
projectProfileVersion?
Type:
string
(optional)
The project profile version to which the project should be updated.
You can only specify the following string for this parameter: latest .
userParameters?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
The user parameters of the project.

.NET
Go
Java
Python
TypeScript