interface CfnOwnerMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.DataZone.Mixins.CfnOwnerMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsdatazone/mixins#CfnOwnerMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.datazone.mixins.CfnOwnerMixinProps |
Python | aws_cdk.mixins_preview.aws_datazone.mixins.CfnOwnerMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_datazone » mixins » CfnOwnerMixinProps |
Properties for CfnOwnerPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.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 cfnOwnerMixinProps: datazone_mixins.CfnOwnerMixinProps = {
domainIdentifier: 'domainIdentifier',
entityIdentifier: 'entityIdentifier',
entityType: 'entityType',
owner: {
group: {
groupIdentifier: 'groupIdentifier',
},
user: {
userIdentifier: 'userIdentifier',
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The ID of the domain in which you want to add the entity owner. |
| entity | string | The ID of the entity to which you want to add an owner. |
| entity | string | The type of an entity. |
| owner? | IResolvable | Owner | The owner that you want to add to the entity. |
domainIdentifier?
Type:
string
(optional)
The ID of the domain in which you want to add the entity owner.
entityIdentifier?
Type:
string
(optional)
The ID of the entity to which you want to add an owner.
entityType?
Type:
string
(optional)
The type of an entity.
owner?
Type:
IResolvable | Owner
(optional)
The owner that you want to add to the entity.

.NET
Go
Java
Python
TypeScript