Struct aws_sdk_glue::types::builders::LocationBuilder
source · #[non_exhaustive]pub struct LocationBuilder { /* private fields */ }Expand description
A builder for Location.
Implementations§
source§impl LocationBuilder
impl LocationBuilder
sourcepub fn jdbc(self, input: CodeGenNodeArg) -> Self
pub fn jdbc(self, input: CodeGenNodeArg) -> Self
sourcepub fn set_jdbc(self, input: Option<Vec<CodeGenNodeArg>>) -> Self
pub fn set_jdbc(self, input: Option<Vec<CodeGenNodeArg>>) -> Self
A JDBC location.
sourcepub fn get_jdbc(&self) -> &Option<Vec<CodeGenNodeArg>>
pub fn get_jdbc(&self) -> &Option<Vec<CodeGenNodeArg>>
A JDBC location.
sourcepub fn s3(self, input: CodeGenNodeArg) -> Self
pub fn s3(self, input: CodeGenNodeArg) -> Self
Appends an item to s3.
To override the contents of this collection use set_s3.
An Amazon Simple Storage Service (Amazon S3) location.
sourcepub fn set_s3(self, input: Option<Vec<CodeGenNodeArg>>) -> Self
pub fn set_s3(self, input: Option<Vec<CodeGenNodeArg>>) -> Self
An Amazon Simple Storage Service (Amazon S3) location.
sourcepub fn get_s3(&self) -> &Option<Vec<CodeGenNodeArg>>
pub fn get_s3(&self) -> &Option<Vec<CodeGenNodeArg>>
An Amazon Simple Storage Service (Amazon S3) location.
sourcepub fn dynamo_db(self, input: CodeGenNodeArg) -> Self
pub fn dynamo_db(self, input: CodeGenNodeArg) -> Self
Appends an item to dynamo_db.
To override the contents of this collection use set_dynamo_db.
An Amazon DynamoDB table location.
sourcepub fn set_dynamo_db(self, input: Option<Vec<CodeGenNodeArg>>) -> Self
pub fn set_dynamo_db(self, input: Option<Vec<CodeGenNodeArg>>) -> Self
An Amazon DynamoDB table location.
sourcepub fn get_dynamo_db(&self) -> &Option<Vec<CodeGenNodeArg>>
pub fn get_dynamo_db(&self) -> &Option<Vec<CodeGenNodeArg>>
An Amazon DynamoDB table location.
Trait Implementations§
source§impl Clone for LocationBuilder
impl Clone for LocationBuilder
source§fn clone(&self) -> LocationBuilder
fn clone(&self) -> LocationBuilder
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 LocationBuilder
impl Debug for LocationBuilder
source§impl Default for LocationBuilder
impl Default for LocationBuilder
source§fn default() -> LocationBuilder
fn default() -> LocationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<LocationBuilder> for LocationBuilder
impl PartialEq<LocationBuilder> for LocationBuilder
source§fn eq(&self, other: &LocationBuilder) -> bool
fn eq(&self, other: &LocationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for LocationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for LocationBuilder
impl Send for LocationBuilder
impl Sync for LocationBuilder
impl Unpin for LocationBuilder
impl UnwindSafe for LocationBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more