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 ==
.