Skip to content

Create Form Type

datazone_create_form_type R Documentation

Creates a metadata form type

Description

Creates a metadata form type.

Usage

datazone_create_form_type(description, domainIdentifier, model, name,
  owningProjectIdentifier, status)

Arguments

description

The description of this Amazon DataZone metadata form type.

domainIdentifier

[required] The ID of the Amazon DataZone domain in which this metadata form type is created.

model

[required] The model of this Amazon DataZone metadata form type.

name

[required] The name of this Amazon DataZone metadata form type.

owningProjectIdentifier

[required] The ID of the Amazon DataZone project that owns this metadata form type.

status

The status of this Amazon DataZone metadata form type.

Value

A list with the following syntax:

list(
  description = "string",
  domainId = "string",
  name = "string",
  originDomainId = "string",
  originProjectId = "string",
  owningProjectId = "string",
  revision = "string"
)

Request syntax

svc$create_form_type(
  description = "string",
  domainIdentifier = "string",
  model = list(
    smithy = "string"
  ),
  name = "string",
  owningProjectIdentifier = "string",
  status = "ENABLED"|"DISABLED"
)