#[non_exhaustive]pub struct GetConnectionsInputBuilder { /* private fields */ }Expand description
A builder for GetConnectionsInput.
Implementations§
source§impl GetConnectionsInputBuilder
impl GetConnectionsInputBuilder
sourcepub fn catalog_id(self, input: impl Into<String>) -> Self
pub fn catalog_id(self, input: impl Into<String>) -> Self
The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn set_catalog_id(self, input: Option<String>) -> Self
pub fn set_catalog_id(self, input: Option<String>) -> Self
The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn get_catalog_id(&self) -> &Option<String>
pub fn get_catalog_id(&self) -> &Option<String>
The ID of the Data Catalog in which the connections reside. If none is provided, the Amazon Web Services account ID is used by default.
sourcepub fn filter(self, input: GetConnectionsFilter) -> Self
pub fn filter(self, input: GetConnectionsFilter) -> Self
A filter that controls which connections are returned.
sourcepub fn set_filter(self, input: Option<GetConnectionsFilter>) -> Self
pub fn set_filter(self, input: Option<GetConnectionsFilter>) -> Self
A filter that controls which connections are returned.
sourcepub fn get_filter(&self) -> &Option<GetConnectionsFilter>
pub fn get_filter(&self) -> &Option<GetConnectionsFilter>
A filter that controls which connections are returned.
sourcepub fn hide_password(self, input: bool) -> Self
pub fn hide_password(self, input: bool) -> Self
Allows you to retrieve the connection metadata without returning the password. For instance, the Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.
sourcepub fn set_hide_password(self, input: Option<bool>) -> Self
pub fn set_hide_password(self, input: Option<bool>) -> Self
Allows you to retrieve the connection metadata without returning the password. For instance, the Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.
sourcepub fn get_hide_password(&self) -> &Option<bool>
pub fn get_hide_password(&self) -> &Option<bool>
Allows you to retrieve the connection metadata without returning the password. For instance, the Glue console uses this flag to retrieve the connection, and does not display the password. Set this parameter when the caller might not have permission to use the KMS key to decrypt the password, but it does have permission to access the rest of the connection properties.
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
A continuation token, if this is a continuation call.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
A continuation token, if this is a continuation call.
sourcepub fn max_results(self, input: i32) -> Self
pub fn max_results(self, input: i32) -> Self
The maximum number of connections to return in one response.
sourcepub fn set_max_results(self, input: Option<i32>) -> Self
pub fn set_max_results(self, input: Option<i32>) -> Self
The maximum number of connections to return in one response.
sourcepub fn get_max_results(&self) -> &Option<i32>
pub fn get_max_results(&self) -> &Option<i32>
The maximum number of connections to return in one response.
sourcepub fn build(self) -> Result<GetConnectionsInput, BuildError>
pub fn build(self) -> Result<GetConnectionsInput, BuildError>
Consumes the builder and constructs a GetConnectionsInput.
source§impl GetConnectionsInputBuilder
impl GetConnectionsInputBuilder
sourcepub async fn send_with(
self,
client: &Client
) -> Result<GetConnectionsOutput, SdkError<GetConnectionsError, HttpResponse>>
pub async fn send_with( self, client: &Client ) -> Result<GetConnectionsOutput, SdkError<GetConnectionsError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for GetConnectionsInputBuilder
impl Clone for GetConnectionsInputBuilder
source§fn clone(&self) -> GetConnectionsInputBuilder
fn clone(&self) -> GetConnectionsInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetConnectionsInputBuilder
impl Debug for GetConnectionsInputBuilder
source§impl Default for GetConnectionsInputBuilder
impl Default for GetConnectionsInputBuilder
source§fn default() -> GetConnectionsInputBuilder
fn default() -> GetConnectionsInputBuilder
source§impl PartialEq<GetConnectionsInputBuilder> for GetConnectionsInputBuilder
impl PartialEq<GetConnectionsInputBuilder> for GetConnectionsInputBuilder
source§fn eq(&self, other: &GetConnectionsInputBuilder) -> bool
fn eq(&self, other: &GetConnectionsInputBuilder) -> bool
self and other values to be equal, and is used
by ==.