Struct aws_sdk_glue::input::GetPlanInput
source · #[non_exhaustive]pub struct GetPlanInput { /* private fields */ }Implementations§
source§impl GetPlanInput
impl GetPlanInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetPlan, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetPlan, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetPlan>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetPlanInput.
source§impl GetPlanInput
impl GetPlanInput
sourcepub fn mapping(&self) -> Option<&[MappingEntry]>
pub fn mapping(&self) -> Option<&[MappingEntry]>
The list of mappings from a source table to target tables.
sourcepub fn source(&self) -> Option<&CatalogEntry>
pub fn source(&self) -> Option<&CatalogEntry>
The source table.
sourcepub fn sinks(&self) -> Option<&[CatalogEntry]>
pub fn sinks(&self) -> Option<&[CatalogEntry]>
The target tables.
sourcepub fn language(&self) -> Option<&Language>
pub fn language(&self) -> Option<&Language>
The programming language of the code to perform the mapping.
sourcepub fn additional_plan_options_map(&self) -> Option<&HashMap<String, String>>
pub fn additional_plan_options_map(&self) -> Option<&HashMap<String, String>>
A map to hold additional optional key-value parameters.
Currently, these key-value pairs are supported:
-
inferSchema— Specifies whether to setinferSchemato true or false for the default script generated by an Glue job. For example, to setinferSchemato true, pass the following key value pair:--additional-plan-options-map '{"inferSchema":"true"}'
Trait Implementations§
source§impl Clone for GetPlanInput
impl Clone for GetPlanInput
source§fn clone(&self) -> GetPlanInput
fn clone(&self) -> GetPlanInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for GetPlanInput
impl Debug for GetPlanInput
source§impl PartialEq<GetPlanInput> for GetPlanInput
impl PartialEq<GetPlanInput> for GetPlanInput
source§fn eq(&self, other: &GetPlanInput) -> bool
fn eq(&self, other: &GetPlanInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.