#[non_exhaustive]pub struct DescribeConnectorProfilesInput {
pub connector_profile_names: Option<Vec<String>>,
pub connector_type: Option<ConnectorType>,
pub max_results: Option<i32>,
pub next_token: Option<String>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.connector_profile_names: Option<Vec<String>>
The name of the connector profile. The name is unique for each ConnectorProfile
in the Amazon Web Services account.
connector_type: Option<ConnectorType>
The type of connector, such as Salesforce, Amplitude, and so on.
max_results: Option<i32>
Specifies the maximum number of items that should be returned in the result set. The default for maxResults
is 20 (for all paginated API operations).
next_token: Option<String>
The pagination token for the next page of data.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeConnectorProfiles, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeConnectorProfiles, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeConnectorProfiles
>
Creates a new builder-style object to manufacture DescribeConnectorProfilesInput
The name of the connector profile. The name is unique for each ConnectorProfile
in the Amazon Web Services account.
The type of connector, such as Salesforce, Amplitude, and so on.
Specifies the maximum number of items that should be returned in the result set. The default for maxResults
is 20 (for all paginated API operations).
The pagination token for the next page of data.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for DescribeConnectorProfilesInput
impl Sync for DescribeConnectorProfilesInput
impl Unpin for DescribeConnectorProfilesInput
impl UnwindSafe for DescribeConnectorProfilesInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more