#[non_exhaustive]pub struct IdentitySourceDetailsBuilder { /* private fields */ }Expand description
A builder for IdentitySourceDetails.
Implementations§
source§impl IdentitySourceDetailsBuilder
impl IdentitySourceDetailsBuilder
sourcepub fn client_ids(self, input: impl Into<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn client_ids(self, input: impl Into<String>) -> Self
Appends an item to client_ids.
To override the contents of this collection use set_client_ids.
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
sourcepub fn set_client_ids(self, input: Option<Vec<String>>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn set_client_ids(self, input: Option<Vec<String>>) -> Self
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
sourcepub fn get_client_ids(&self) -> &Option<Vec<String>>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.clientIds
pub fn get_client_ids(&self) -> &Option<Vec<String>>
The application client IDs associated with the specified Amazon Cognito user pool that are enabled for this identity source.
sourcepub fn user_pool_arn(self, input: impl Into<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn user_pool_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn set_user_pool_arn(self, input: Option<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn set_user_pool_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn get_user_pool_arn(&self) -> &Option<String>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.userPoolArn
pub fn get_user_pool_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the Amazon Cognito user pool whose identities are accessible to this Verified Permissions policy store.
sourcepub fn discovery_url(self, input: impl Into<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn discovery_url(self, input: impl Into<String>) -> Self
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration
sourcepub fn set_discovery_url(self, input: Option<String>) -> Self
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn set_discovery_url(self, input: Option<String>) -> Self
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration
sourcepub fn get_discovery_url(&self) -> &Option<String>
👎Deprecated: This attribute has been replaced by configuration.cognitoUserPoolConfiguration.issuer
pub fn get_discovery_url(&self) -> &Option<String>
The well-known URL that points to this user pool's OIDC discovery endpoint. This is a URL string in the following format. This URL replaces the placeholders for both the Amazon Web Services Region and the user pool identifier with those appropriate for this user pool.
https://cognito-idp.<region>.amazonaws.com/<user-pool-id>/.well-known/openid-configuration
sourcepub fn open_id_issuer(self, input: OpenIdIssuer) -> Self
👎Deprecated: This attribute has been replaced by configuration
pub fn open_id_issuer(self, input: OpenIdIssuer) -> Self
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is cognito.
sourcepub fn set_open_id_issuer(self, input: Option<OpenIdIssuer>) -> Self
👎Deprecated: This attribute has been replaced by configuration
pub fn set_open_id_issuer(self, input: Option<OpenIdIssuer>) -> Self
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is cognito.
sourcepub fn get_open_id_issuer(&self) -> &Option<OpenIdIssuer>
👎Deprecated: This attribute has been replaced by configuration
pub fn get_open_id_issuer(&self) -> &Option<OpenIdIssuer>
A string that identifies the type of OIDC service represented by this identity source.
At this time, the only valid value is cognito.
sourcepub fn build(self) -> IdentitySourceDetails
pub fn build(self) -> IdentitySourceDetails
Consumes the builder and constructs a IdentitySourceDetails.
Trait Implementations§
source§impl Clone for IdentitySourceDetailsBuilder
impl Clone for IdentitySourceDetailsBuilder
source§fn clone(&self) -> IdentitySourceDetailsBuilder
fn clone(&self) -> IdentitySourceDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for IdentitySourceDetailsBuilder
impl Debug for IdentitySourceDetailsBuilder
source§impl Default for IdentitySourceDetailsBuilder
impl Default for IdentitySourceDetailsBuilder
source§fn default() -> IdentitySourceDetailsBuilder
fn default() -> IdentitySourceDetailsBuilder
source§impl PartialEq for IdentitySourceDetailsBuilder
impl PartialEq for IdentitySourceDetailsBuilder
source§fn eq(&self, other: &IdentitySourceDetailsBuilder) -> bool
fn eq(&self, other: &IdentitySourceDetailsBuilder) -> bool
self and other values to be equal, and is used
by ==.