Struct rusoto_glue::GetPlanRequest[][src]

pub struct GetPlanRequest {
    pub language: Option<String>,
    pub location: Option<Location>,
    pub mapping: Vec<MappingEntry>,
    pub sinks: Option<Vec<CatalogEntry>>,
    pub source: CatalogEntry,
}

Fields

The programming language of the code to perform the mapping.

Parameters for the mapping.

The list of mappings from a source table to target tables.

The target tables.

The source table.

Trait Implementations

impl Default for GetPlanRequest
[src]

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

impl Debug for GetPlanRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetPlanRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for GetPlanRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations