Struct cfn::aws::glue::TableProperties [] [src]

pub struct TableProperties {
    pub catalog_id: Value<String>,
    pub database_name: Value<String>,
    pub table_input: Value<TableInput>,
}

Properties for the Table resource.

Fields

Property CatalogId.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property DatabaseName.

Update type: Immutable. AWS CloudFormation replaces the resource when you change this property.

Property TableInput.

Update type: Mutable. AWS CloudFormation doesn't replace the resource when you change this property.

Trait Implementations

impl Debug for TableProperties
[src]

[src]

Formats the value using the given formatter. Read more

impl Default for TableProperties
[src]

[src]

Returns the "default value" for a type. Read more

impl Serialize for TableProperties
[src]

[src]

Serialize this value into the given Serde serializer. Read more

impl<'de> Deserialize<'de> for TableProperties
[src]

[src]

Deserialize this value from the given Serde deserializer. Read more

impl From<TableProperties> for Table
[src]

[src]

Performs the conversion.

Auto Trait Implementations