Struct aws_sdk_redshift::operation::authorize_endpoint_access::AuthorizeEndpointAccessOutput
source · #[non_exhaustive]pub struct AuthorizeEndpointAccessOutput { /* private fields */ }
Expand description
Describes an endpoint authorization for authorizing Redshift-managed VPC endpoint access to a cluster across Amazon Web Services accounts.
Implementations§
source§impl AuthorizeEndpointAccessOutput
impl AuthorizeEndpointAccessOutput
sourcepub fn grantee(&self) -> Option<&str>
pub fn grantee(&self) -> Option<&str>
The Amazon Web Services account ID of the grantee of the cluster.
sourcepub fn cluster_identifier(&self) -> Option<&str>
pub fn cluster_identifier(&self) -> Option<&str>
The cluster identifier.
The time (UTC) when the authorization was created.
sourcepub fn cluster_status(&self) -> Option<&str>
pub fn cluster_status(&self) -> Option<&str>
The status of the cluster.
sourcepub fn status(&self) -> Option<&AuthorizationStatus>
pub fn status(&self) -> Option<&AuthorizationStatus>
The status of the authorization action.
sourcepub fn allowed_all_vp_cs(&self) -> bool
pub fn allowed_all_vp_cs(&self) -> bool
Indicates whether all VPCs in the grantee account are allowed access to the cluster.
sourcepub fn allowed_vp_cs(&self) -> Option<&[String]>
pub fn allowed_vp_cs(&self) -> Option<&[String]>
The VPCs allowed access to the cluster.
sourcepub fn endpoint_count(&self) -> i32
pub fn endpoint_count(&self) -> i32
The number of Redshift-managed VPC endpoints created for the authorization.
source§impl AuthorizeEndpointAccessOutput
impl AuthorizeEndpointAccessOutput
sourcepub fn builder() -> AuthorizeEndpointAccessOutputBuilder
pub fn builder() -> AuthorizeEndpointAccessOutputBuilder
Creates a new builder-style object to manufacture AuthorizeEndpointAccessOutput
.
Trait Implementations§
source§impl Clone for AuthorizeEndpointAccessOutput
impl Clone for AuthorizeEndpointAccessOutput
source§fn clone(&self) -> AuthorizeEndpointAccessOutput
fn clone(&self) -> AuthorizeEndpointAccessOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq<AuthorizeEndpointAccessOutput> for AuthorizeEndpointAccessOutput
impl PartialEq<AuthorizeEndpointAccessOutput> for AuthorizeEndpointAccessOutput
source§fn eq(&self, other: &AuthorizeEndpointAccessOutput) -> bool
fn eq(&self, other: &AuthorizeEndpointAccessOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for AuthorizeEndpointAccessOutput
impl RequestId for AuthorizeEndpointAccessOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for AuthorizeEndpointAccessOutput
Auto Trait Implementations§
impl RefUnwindSafe for AuthorizeEndpointAccessOutput
impl Send for AuthorizeEndpointAccessOutput
impl Sync for AuthorizeEndpointAccessOutput
impl Unpin for AuthorizeEndpointAccessOutput
impl UnwindSafe for AuthorizeEndpointAccessOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more