Struct aws_sdk_connect::operation::list_routing_profile_queues::ListRoutingProfileQueuesInput
source · #[non_exhaustive]pub struct ListRoutingProfileQueuesInput {
pub instance_id: Option<String>,
pub routing_profile_id: Option<String>,
pub next_token: Option<String>,
pub max_results: Option<i32>,
}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.instance_id: Option<String>The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
routing_profile_id: Option<String>The identifier of the routing profile.
next_token: Option<String>The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
max_results: Option<i32>The maximum number of results to return per page. The default MaxResult size is 100.
Implementations§
source§impl ListRoutingProfileQueuesInput
impl ListRoutingProfileQueuesInput
sourcepub fn instance_id(&self) -> Option<&str>
pub fn instance_id(&self) -> Option<&str>
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
sourcepub fn routing_profile_id(&self) -> Option<&str>
pub fn routing_profile_id(&self) -> Option<&str>
The identifier of the routing profile.
sourcepub fn next_token(&self) -> Option<&str>
pub fn next_token(&self) -> Option<&str>
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
sourcepub fn max_results(&self) -> Option<i32>
pub fn max_results(&self) -> Option<i32>
The maximum number of results to return per page. The default MaxResult size is 100.
source§impl ListRoutingProfileQueuesInput
impl ListRoutingProfileQueuesInput
sourcepub fn builder() -> ListRoutingProfileQueuesInputBuilder
pub fn builder() -> ListRoutingProfileQueuesInputBuilder
Creates a new builder-style object to manufacture ListRoutingProfileQueuesInput.
Trait Implementations§
source§impl Clone for ListRoutingProfileQueuesInput
impl Clone for ListRoutingProfileQueuesInput
source§fn clone(&self) -> ListRoutingProfileQueuesInput
fn clone(&self) -> ListRoutingProfileQueuesInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for ListRoutingProfileQueuesInput
impl PartialEq for ListRoutingProfileQueuesInput
source§fn eq(&self, other: &ListRoutingProfileQueuesInput) -> bool
fn eq(&self, other: &ListRoutingProfileQueuesInput) -> bool
self and other values to be equal, and is used
by ==.