Class CfnFormTypeProps
Properties for defining a CfnFormType.
Implements
Inherited Members
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 |
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
Remarks
DomainIdentifier
The identifier of the Amazon DataZone domain in which the form type exists.
public string DomainIdentifier { get; set; }
Property Value
Remarks
Model
The model of the form type.
public object Model { get; set; }
Property Value
Remarks
Name
The name of the form type.
public string Name { get; set; }
Property Value
Remarks
OwningProjectIdentifier
The identifier of the project that owns the form type.
public string OwningProjectIdentifier { get; set; }
Property Value
Remarks
Status
The status of the form type.
public string? Status { get; set; }