CfnOwnerMixinProps
- class aws_cdk.mixins_preview.aws_datazone.mixins.CfnOwnerMixinProps(*, domain_identifier=None, entity_identifier=None, entity_type=None, owner=None)
Bases:
objectProperties for CfnOwnerPropsMixin.
- Parameters:
domain_identifier (
Optional[str]) – The ID of the domain in which you want to add the entity owner.entity_identifier (
Optional[str]) – The ID of the entity to which you want to add an owner.entity_type (
Optional[str]) – The type of an entity.owner (
Union[IResolvable,OwnerPropertiesProperty,Dict[str,Any],None]) – The owner that you want to add to the entity.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk.mixins_preview.aws_datazone import mixins as datazone_mixins cfn_owner_mixin_props = datazone_mixins.CfnOwnerMixinProps( domain_identifier="domainIdentifier", entity_identifier="entityIdentifier", entity_type="entityType", owner=datazone_mixins.CfnOwnerPropsMixin.OwnerPropertiesProperty( group=datazone_mixins.CfnOwnerPropsMixin.OwnerGroupPropertiesProperty( group_identifier="groupIdentifier" ), user=datazone_mixins.CfnOwnerPropsMixin.OwnerUserPropertiesProperty( user_identifier="userIdentifier" ) ) )
Attributes
- domain_identifier
The ID of the domain in which you want to add the entity owner.
- entity_identifier
The ID of the entity to which you want to add an owner.
- entity_type
The type of an entity.
- owner
The owner that you want to add to the entity.