Interface CfnOwnerPropsMixin.OwnerPropertiesProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnOwnerPropsMixin.OwnerPropertiesProperty.Jsii$Proxy
- Enclosing class:
CfnOwnerPropsMixin
@Stability(Stable)
public static interface CfnOwnerPropsMixin.OwnerPropertiesProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.cfnpropertymixins.services.datazone.*;
OwnerPropertiesProperty ownerPropertiesProperty = OwnerPropertiesProperty.builder()
.group(OwnerGroupPropertiesProperty.builder()
.groupIdentifier("groupIdentifier")
.build())
.user(OwnerUserPropertiesProperty.builder()
.userIdentifier("userIdentifier")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnOwnerPropsMixin.OwnerPropertiesPropertystatic final classAn implementation forCfnOwnerPropsMixin.OwnerPropertiesProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGroup
Specifies that the domain unit owner is a group.Returns union: either
IResolvableorCfnOwnerPropsMixin.OwnerGroupPropertiesProperty- See Also:
-
getUser
Specifies that the domain unit owner is a user.Returns union: either
IResolvableorCfnOwnerPropsMixin.OwnerUserPropertiesProperty- See Also:
-
builder
-