Struct aws_sdk_securityhub::types::builders::AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
source · #[non_exhaustive]pub struct AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder { /* private fields */ }
Expand description
A builder for AwsAppSyncGraphQlApiOpenIdConnectConfigDetails
.
Implementations§
source§impl AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
impl AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
sourcepub fn auth_ttl(self, input: i64) -> Self
pub fn auth_ttl(self, input: i64) -> Self
The number of milliseconds that a token is valid after being authenticated.
sourcepub fn set_auth_ttl(self, input: Option<i64>) -> Self
pub fn set_auth_ttl(self, input: Option<i64>) -> Self
The number of milliseconds that a token is valid after being authenticated.
sourcepub fn get_auth_ttl(&self) -> &Option<i64>
pub fn get_auth_ttl(&self) -> &Option<i64>
The number of milliseconds that a token is valid after being authenticated.
sourcepub fn client_id(self, input: impl Into<String>) -> Self
pub fn client_id(self, input: impl Into<String>) -> Self
The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.
sourcepub fn set_client_id(self, input: Option<String>) -> Self
pub fn set_client_id(self, input: Option<String>) -> Self
The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.
sourcepub fn get_client_id(&self) -> &Option<String>
pub fn get_client_id(&self) -> &Option<String>
The client identifier of the relying party at the OpenID identity provider. This identifier is typically obtained when the relying party is registered with the OpenID identity provider. You can specify a regular expression so that AppSync can validate against multiple client identifiers at a time.
sourcepub fn iat_ttl(self, input: i64) -> Self
pub fn iat_ttl(self, input: i64) -> Self
The number of milliseconds that a token is valid after it's issued to a user.
sourcepub fn set_iat_ttl(self, input: Option<i64>) -> Self
pub fn set_iat_ttl(self, input: Option<i64>) -> Self
The number of milliseconds that a token is valid after it's issued to a user.
sourcepub fn get_iat_ttl(&self) -> &Option<i64>
pub fn get_iat_ttl(&self) -> &Option<i64>
The number of milliseconds that a token is valid after it's issued to a user.
sourcepub fn issuer(self, input: impl Into<String>) -> Self
pub fn issuer(self, input: impl Into<String>) -> Self
The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss
in the ID token.
sourcepub fn set_issuer(self, input: Option<String>) -> Self
pub fn set_issuer(self, input: Option<String>) -> Self
The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss
in the ID token.
sourcepub fn get_issuer(&self) -> &Option<String>
pub fn get_issuer(&self) -> &Option<String>
The issuer for the OIDC configuration. The issuer returned by discovery must exactly match the value of iss
in the ID token.
sourcepub fn build(self) -> AwsAppSyncGraphQlApiOpenIdConnectConfigDetails
pub fn build(self) -> AwsAppSyncGraphQlApiOpenIdConnectConfigDetails
Consumes the builder and constructs a AwsAppSyncGraphQlApiOpenIdConnectConfigDetails
.
Trait Implementations§
source§impl Clone for AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
impl Clone for AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
source§fn clone(&self) -> AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
fn clone(&self) -> AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
impl Default for AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
source§fn default() -> AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
fn default() -> AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
source§impl PartialEq for AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
impl PartialEq for AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
source§fn eq(
&self,
other: &AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder
) -> bool
fn eq( &self, other: &AwsAppSyncGraphQlApiOpenIdConnectConfigDetailsBuilder ) -> bool
self
and other
values to be equal, and is used
by ==
.