interface CfnProjectProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnProjectProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnProjectProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnProjectProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnProjectProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnProjectProfileMixinProps |
Properties for CfnProjectProfilePropsMixin.
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 cfnProjectProfileMixinProps: datazone_mixins.CfnProjectProfileMixinProps = {
description: 'description',
domainIdentifier: 'domainIdentifier',
domainUnitIdentifier: 'domainUnitIdentifier',
environmentConfigurations: [{
awsAccount: {
awsAccountId: 'awsAccountId',
},
awsRegion: {
regionName: 'regionName',
},
configurationParameters: {
parameterOverrides: [{
isEditable: false,
name: 'name',
value: 'value',
}],
resolvedParameters: [{
isEditable: false,
name: 'name',
value: 'value',
}],
ssmPath: 'ssmPath',
},
deploymentMode: 'deploymentMode',
deploymentOrder: 123,
description: 'description',
environmentBlueprintId: 'environmentBlueprintId',
environmentConfigurationId: 'environmentConfigurationId',
name: 'name',
}],
name: 'name',
status: 'status',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the project profile. |
| domain | string | A domain ID of the project profile. |
| domain | string | A domain unit ID of the project profile. |
| environment | IResolvable | (IResolvable | Environment)[] | Environment configurations of a project profile. |
| name? | string | The name of a project profile. |
| status? | string | The status of a project profile. |
description?
Type:
string
(optional)
The description of the project profile.
domainIdentifier?
Type:
string
(optional)
A domain ID of the project profile.
domainUnitIdentifier?
Type:
string
(optional)
A domain unit ID of the project profile.
environmentConfigurations?
Type:
IResolvable | (IResolvable | Environment)[]
(optional)
Environment configurations of a project profile.
name?
Type:
string
(optional)
The name of a project profile.
status?
Type:
string
(optional)
The status of a project profile.

.NET
Go
Java
Python
TypeScript