Show / Hide Table of Contents

Class CfnFormTypeProps

Properties for defining a CfnFormType.

Inheritance
object
CfnFormTypeProps
Implements
ICfnFormTypeProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.DataZone
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFormTypeProps : ICfnFormTypeProps
Syntax (vb)
Public Class CfnFormTypeProps Implements ICfnFormTypeProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.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 cfnFormTypeProps = new CfnFormTypeProps {
                 DomainIdentifier = "domainIdentifier",
                 Model = new ModelProperty {
                     Smithy = "smithy"
                 },
                 Name = "name",
                 OwningProjectIdentifier = "owningProjectIdentifier",

                 // the properties below are optional
                 Description = "description",
                 Status = "status"
             };

Synopsis

Constructors

CfnFormTypeProps()

Properties for defining a CfnFormType.

Properties

Description

The description of the metadata form type.

DomainIdentifier

The identifier of the Amazon DataZone domain in which the form type exists.

Model

The model of the form type.

Name

The name of the form type.

OwningProjectIdentifier

The identifier of the project that owns the form type.

Status

The status of the form type.

Constructors

CfnFormTypeProps()

Properties for defining a CfnFormType.

public CfnFormTypeProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-datazone-formtype.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 cfnFormTypeProps = new CfnFormTypeProps {
                 DomainIdentifier = "domainIdentifier",
                 Model = new ModelProperty {
                     Smithy = "smithy"
                 },
                 Name = "name",
                 OwningProjectIdentifier = "owningProjectIdentifier",

                 // the properties below are optional
                 Description = "description",
                 Status = "status"
             };

Properties

Description

The description of the metadata form type.

public string? Description { get; set; }
Property Value

string

Remarks

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

DomainIdentifier

The identifier of the Amazon DataZone domain in which the form type exists.

public string DomainIdentifier { get; set; }
Property Value

string

Remarks

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

Model

The model of the form type.

public object Model { get; set; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnFormType.IModelProperty

Name

The name of the form type.

public string Name { get; set; }
Property Value

string

Remarks

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

OwningProjectIdentifier

The identifier of the project that owns the form type.

public string OwningProjectIdentifier { get; set; }
Property Value

string

Remarks

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

Status

The status of the form type.

public string? Status { get; set; }
Property Value

string

Remarks

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

Implements

ICfnFormTypeProps
Back to top Generated by DocFX