Struct aws_config::sso::credentials::Builder
source · pub struct Builder { /* private fields */ }
sso
only.Expand description
Builder for SsoCredentialsProvider
Implementations§
source§impl Builder
impl Builder
sourcepub fn new() -> Self
pub fn new() -> Self
Create a new builder for SsoCredentialsProvider
sourcepub fn configure(self, provider_config: &ProviderConfig) -> Self
pub fn configure(self, provider_config: &ProviderConfig) -> Self
Override the configuration used for this provider
sourcepub fn account_id(self, account_id: impl Into<String>) -> Self
pub fn account_id(self, account_id: impl Into<String>) -> Self
Set the account id used for SSO
This is a required field.
sourcepub fn set_account_id(&mut self, account_id: Option<String>) -> &mut Self
pub fn set_account_id(&mut self, account_id: Option<String>) -> &mut Self
Set the account id used for SSO
This is a required field.
sourcepub fn region(self, region: Region) -> Self
pub fn region(self, region: Region) -> Self
Set the region used for SSO
This is a required field.
sourcepub fn set_region(&mut self, region: Option<Region>) -> &mut Self
pub fn set_region(&mut self, region: Option<Region>) -> &mut Self
Set the region used for SSO
This is a required field.
sourcepub fn role_name(self, role_name: impl Into<String>) -> Self
pub fn role_name(self, role_name: impl Into<String>) -> Self
Set the role name used for SSO
This is a required field.
sourcepub fn set_role_name(&mut self, role_name: Option<String>) -> &mut Self
pub fn set_role_name(&mut self, role_name: Option<String>) -> &mut Self
Set the role name used for SSO
This is a required field.
sourcepub fn start_url(self, start_url: impl Into<String>) -> Self
pub fn start_url(self, start_url: impl Into<String>) -> Self
Set the start URL used for SSO
This is a required field.
sourcepub fn set_start_url(&mut self, start_url: Option<String>) -> &mut Self
pub fn set_start_url(&mut self, start_url: Option<String>) -> &mut Self
Set the start URL used for SSO
This is a required field.
sourcepub fn session_name(self, session_name: impl Into<String>) -> Self
pub fn session_name(self, session_name: impl Into<String>) -> Self
Set the session name used for SSO
sourcepub fn set_session_name(&mut self, session_name: Option<String>) -> &mut Self
pub fn set_session_name(&mut self, session_name: Option<String>) -> &mut Self
Set the session name used for SSO
sourcepub fn build(self) -> SsoCredentialsProvider
pub fn build(self) -> SsoCredentialsProvider
Construct an SsoCredentialsProvider from the builder
§Panics
This method will panic if the any of the following required fields are unset: