Struct aws_sdk_emr::operation::get_cluster_session_credentials::GetClusterSessionCredentialsInput
source · #[non_exhaustive]pub struct GetClusterSessionCredentialsInput {
pub cluster_id: Option<String>,
pub execution_role_arn: 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_id: Option<String>The unique identifier of the cluster.
execution_role_arn: Option<String>The Amazon Resource Name (ARN) of the runtime role for interactive workload submission on the cluster. The runtime role can be a cross-account IAM role. The runtime role ARN is a combination of account ID, role name, and role type using the following format: arn:partition:service:region:account:resource.
Implementations§
source§impl GetClusterSessionCredentialsInput
impl GetClusterSessionCredentialsInput
sourcepub fn cluster_id(&self) -> Option<&str>
pub fn cluster_id(&self) -> Option<&str>
The unique identifier of the cluster.
sourcepub fn execution_role_arn(&self) -> Option<&str>
pub fn execution_role_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) of the runtime role for interactive workload submission on the cluster. The runtime role can be a cross-account IAM role. The runtime role ARN is a combination of account ID, role name, and role type using the following format: arn:partition:service:region:account:resource.
source§impl GetClusterSessionCredentialsInput
impl GetClusterSessionCredentialsInput
sourcepub fn builder() -> GetClusterSessionCredentialsInputBuilder
pub fn builder() -> GetClusterSessionCredentialsInputBuilder
Creates a new builder-style object to manufacture GetClusterSessionCredentialsInput.
Trait Implementations§
source§impl Clone for GetClusterSessionCredentialsInput
impl Clone for GetClusterSessionCredentialsInput
source§fn clone(&self) -> GetClusterSessionCredentialsInput
fn clone(&self) -> GetClusterSessionCredentialsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for GetClusterSessionCredentialsInput
impl PartialEq for GetClusterSessionCredentialsInput
source§fn eq(&self, other: &GetClusterSessionCredentialsInput) -> bool
fn eq(&self, other: &GetClusterSessionCredentialsInput) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for GetClusterSessionCredentialsInput
Auto Trait Implementations§
impl Freeze for GetClusterSessionCredentialsInput
impl RefUnwindSafe for GetClusterSessionCredentialsInput
impl Send for GetClusterSessionCredentialsInput
impl Sync for GetClusterSessionCredentialsInput
impl Unpin for GetClusterSessionCredentialsInput
impl UnwindSafe for GetClusterSessionCredentialsInput
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more