interface OwnerPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.aws_datazone.CfnOwner.OwnerPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnOwner_OwnerPropertiesProperty |
Java | software.amazon.awscdk.services.datazone.CfnOwner.OwnerPropertiesProperty |
Python | aws_cdk.aws_datazone.CfnOwner.OwnerPropertiesProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnOwner » OwnerPropertiesProperty |
The properties of a domain unit's owner.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const ownerPropertiesProperty: datazone.CfnOwner.OwnerPropertiesProperty = {
group: {
groupIdentifier: 'groupIdentifier',
},
user: {
userIdentifier: 'userIdentifier',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| group? | IResolvable | Owner | Specifies that the domain unit owner is a group. |
| user? | IResolvable | Owner | Specifies that the domain unit owner is a user. |
group?
Type:
IResolvable | Owner
(optional)
Specifies that the domain unit owner is a group.
user?
Type:
IResolvable | Owner
(optional)
Specifies that the domain unit owner is a user.

.NET
Go
Java
Python
TypeScript