interface CfnUserProfileMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnUserProfileMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnUserProfileMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnUserProfileMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnUserProfileMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnUserProfileMixinProps |
Properties for CfnUserProfilePropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-userprofile.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 cfnUserProfileMixinProps: datazone_mixins.CfnUserProfileMixinProps = {
domainIdentifier: 'domainIdentifier',
status: 'status',
userIdentifier: 'userIdentifier',
userType: 'userType',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The identifier of a Amazon DataZone domain in which a user profile exists. |
| status? | string | The status of the user profile. |
| user | string | The identifier of the user for which the user profile is created. |
| user | string | The user type of the user for which the user profile is created. |
domainIdentifier?
Type:
string
(optional)
The identifier of a Amazon DataZone domain in which a user profile exists.
status?
Type:
string
(optional)
The status of the user profile.
userIdentifier?
Type:
string
(optional)
The identifier of the user for which the user profile is created.
userType?
Type:
string
(optional)
The user type of the user for which the user profile is created.

.NET
Go
Java
Python
TypeScript