Show / Hide Table of Contents

Interface ICfnOwnerProps

Properties for defining a CfnOwner.

Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnOwnerProps
Syntax (vb)
Public Interface ICfnOwnerProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.DataZone;

             var cfnOwnerProps = new CfnOwnerProps {
                 DomainIdentifier = "domainIdentifier",
                 EntityIdentifier = "entityIdentifier",
                 EntityType = "entityType",
                 Owner = new OwnerPropertiesProperty {
                     Group = new OwnerGroupPropertiesProperty {
                         GroupIdentifier = "groupIdentifier"
                     },
                     User = new OwnerUserPropertiesProperty {
                         UserIdentifier = "userIdentifier"
                     }
                 }
             };

Synopsis

Properties

DomainIdentifier

The ID of the domain in which you want to add the entity owner.

EntityIdentifier

The ID of the entity to which you want to add an owner.

EntityType

The type of an entity.

Owner

The owner that you want to add to the entity.

Properties

DomainIdentifier

The ID of the domain in which you want to add the entity owner.

string DomainIdentifier { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-domainidentifier

EntityIdentifier

The ID of the entity to which you want to add an owner.

string EntityIdentifier { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-entityidentifier

EntityType

The type of an entity.

string EntityType { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-entitytype

Owner

The owner that you want to add to the entity.

object Owner { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-owner.html#cfn-datazone-owner-owner

Type union: either IResolvable or CfnOwner.IOwnerPropertiesProperty

Back to top Generated by DocFX