Struct aws_sdk_glue::input::GetConnectionsInput
source · #[non_exhaustive]pub struct GetConnectionsInput { /* private fields */ }Implementations§
source§impl GetConnectionsInput
impl GetConnectionsInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetConnections, AwsResponseRetryClassifier>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<GetConnections, AwsResponseRetryClassifier>, BuildError>
Consumes the builder and constructs an Operation<GetConnections>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture GetConnectionsInput.
source§impl GetConnectionsInput
impl GetConnectionsInput
sourcepub fn catalog_id(&self) -> Option<&str>
pub fn catalog_id(&self) -> Option<&str>
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) -> Option<&GetConnectionsFilter>
pub fn filter(&self) -> Option<&GetConnectionsFilter>
A filter that controls which connections are returned.
sourcepub fn hide_password(&self) -> bool
pub fn hide_password(&self) -> 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) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
A continuation token, if this is a continuation call.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of connections to return in one response.
Trait Implementations§
source§impl Clone for GetConnectionsInput
impl Clone for GetConnectionsInput
source§fn clone(&self) -> GetConnectionsInput
fn clone(&self) -> GetConnectionsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for GetConnectionsInput
impl Debug for GetConnectionsInput
source§impl PartialEq<GetConnectionsInput> for GetConnectionsInput
impl PartialEq<GetConnectionsInput> for GetConnectionsInput
source§fn eq(&self, other: &GetConnectionsInput) -> bool
fn eq(&self, other: &GetConnectionsInput) -> bool
self and other values to be equal, and is used
by ==.