#[non_exhaustive]pub struct DescribeEndpointAuthorizationInput {
pub cluster_identifier: Option<String>,
pub account: Option<String>,
pub grantee: Option<bool>,
pub max_records: Option<i32>,
pub marker: 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.cluster_identifier: Option<String>
The cluster identifier of the cluster to access.
account: Option<String>
The AAmazon Web Services account ID of either the cluster owner (grantor) or grantee. If Grantee
parameter is true, then the Account
value is of the grantor.
grantee: Option<bool>
Indicates whether to check authorization from a grantor or grantee point of view. If true, Amazon Redshift returns endpoint authorizations that you've been granted. If false (default), checks authorization from a grantor point of view.
max_records: Option<i32>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a Marker
is included in the response so that the remaining results can be retrieved.
marker: Option<String>
An optional pagination token provided by a previous DescribeEndpointAuthorization
request. If this parameter is specified, the response includes only records beyond the marker, up to the value specified by the MaxRecords
parameter.
Implementations
sourceimpl DescribeEndpointAuthorizationInput
impl DescribeEndpointAuthorizationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEndpointAuthorization, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<DescribeEndpointAuthorization, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<DescribeEndpointAuthorization
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DescribeEndpointAuthorizationInput
sourceimpl DescribeEndpointAuthorizationInput
impl DescribeEndpointAuthorizationInput
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The cluster identifier of the cluster to access.
sourcepub fn account(&self) -> Option<&str>
pub fn account(&self) -> Option<&str>
The AAmazon Web Services account ID of either the cluster owner (grantor) or grantee. If Grantee
parameter is true, then the Account
value is of the grantor.
sourcepub fn grantee(&self) -> Option<bool>
pub fn grantee(&self) -> Option<bool>
Indicates whether to check authorization from a grantor or grantee point of view. If true, Amazon Redshift returns endpoint authorizations that you've been granted. If false (default), checks authorization from a grantor point of view.
sourcepub fn max_records(&self) -> Option<i32>
pub fn max_records(&self) -> Option<i32>
The maximum number of records to include in the response. If more records exist than the specified MaxRecords
value, a pagination token called a Marker
is included in the response so that the remaining results can be retrieved.
Trait Implementations
sourceimpl Clone for DescribeEndpointAuthorizationInput
impl Clone for DescribeEndpointAuthorizationInput
sourcefn clone(&self) -> DescribeEndpointAuthorizationInput
fn clone(&self) -> DescribeEndpointAuthorizationInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl PartialEq<DescribeEndpointAuthorizationInput> for DescribeEndpointAuthorizationInput
impl PartialEq<DescribeEndpointAuthorizationInput> for DescribeEndpointAuthorizationInput
sourcefn eq(&self, other: &DescribeEndpointAuthorizationInput) -> bool
fn eq(&self, other: &DescribeEndpointAuthorizationInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DescribeEndpointAuthorizationInput) -> bool
fn ne(&self, other: &DescribeEndpointAuthorizationInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for DescribeEndpointAuthorizationInput
Auto Trait Implementations
impl RefUnwindSafe for DescribeEndpointAuthorizationInput
impl Send for DescribeEndpointAuthorizationInput
impl Sync for DescribeEndpointAuthorizationInput
impl Unpin for DescribeEndpointAuthorizationInput
impl UnwindSafe for DescribeEndpointAuthorizationInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more