pub struct DescribeEndpointAuthorizationMessage {
pub account: Option<String>,
pub cluster_identifier: Option<String>,
pub grantee: Option<bool>,
pub marker: Option<String>,
pub max_records: Option<i64>,
}Fields§
§account: Option<String>The AWS account ID of either the cluster owner (grantor) or grantee. If Grantee parameter is true, then the Account value is of the grantor.
cluster_identifier: Option<String>The cluster identifier of the cluster to access.
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.
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.
max_records: Option<i64>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§
Source§impl Clone for DescribeEndpointAuthorizationMessage
impl Clone for DescribeEndpointAuthorizationMessage
Source§fn clone(&self) -> DescribeEndpointAuthorizationMessage
fn clone(&self) -> DescribeEndpointAuthorizationMessage
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Default for DescribeEndpointAuthorizationMessage
impl Default for DescribeEndpointAuthorizationMessage
Source§fn default() -> DescribeEndpointAuthorizationMessage
fn default() -> DescribeEndpointAuthorizationMessage
Source§impl PartialEq for DescribeEndpointAuthorizationMessage
impl PartialEq for DescribeEndpointAuthorizationMessage
Source§fn eq(&self, other: &DescribeEndpointAuthorizationMessage) -> bool
fn eq(&self, other: &DescribeEndpointAuthorizationMessage) -> bool
self and other values to be equal, and is used by ==.