Struct aws_sdk_appflow::model::o_auth2_defaults::Builder
source · [−]#[non_exhaustive]pub struct Builder { /* private fields */ }
Expand description
A builder for OAuth2Defaults
Implementations
sourceimpl Builder
impl Builder
sourcepub fn oauth_scopes(self, input: impl Into<String>) -> Self
pub fn oauth_scopes(self, input: impl Into<String>) -> Self
Appends an item to oauth_scopes
.
To override the contents of this collection use set_oauth_scopes
.
OAuth 2.0 scopes that the connector supports.
sourcepub fn set_oauth_scopes(self, input: Option<Vec<String>>) -> Self
pub fn set_oauth_scopes(self, input: Option<Vec<String>>) -> Self
OAuth 2.0 scopes that the connector supports.
sourcepub fn token_urls(self, input: impl Into<String>) -> Self
pub fn token_urls(self, input: impl Into<String>) -> Self
Appends an item to token_urls
.
To override the contents of this collection use set_token_urls
.
Token URLs that can be used for OAuth 2.0 authentication.
sourcepub fn set_token_urls(self, input: Option<Vec<String>>) -> Self
pub fn set_token_urls(self, input: Option<Vec<String>>) -> Self
Token URLs that can be used for OAuth 2.0 authentication.
sourcepub fn auth_code_urls(self, input: impl Into<String>) -> Self
pub fn auth_code_urls(self, input: impl Into<String>) -> Self
Appends an item to auth_code_urls
.
To override the contents of this collection use set_auth_code_urls
.
Auth code URLs that can be used for OAuth 2.0 authentication.
sourcepub fn set_auth_code_urls(self, input: Option<Vec<String>>) -> Self
pub fn set_auth_code_urls(self, input: Option<Vec<String>>) -> Self
Auth code URLs that can be used for OAuth 2.0 authentication.
sourcepub fn oauth2_grant_types_supported(self, input: OAuth2GrantType) -> Self
pub fn oauth2_grant_types_supported(self, input: OAuth2GrantType) -> Self
Appends an item to oauth2_grant_types_supported
.
To override the contents of this collection use set_oauth2_grant_types_supported
.
OAuth 2.0 grant types supported by the connector.
sourcepub fn set_oauth2_grant_types_supported(
self,
input: Option<Vec<OAuth2GrantType>>
) -> Self
pub fn set_oauth2_grant_types_supported(
self,
input: Option<Vec<OAuth2GrantType>>
) -> Self
OAuth 2.0 grant types supported by the connector.
sourcepub fn build(self) -> OAuth2Defaults
pub fn build(self) -> OAuth2Defaults
Consumes the builder and constructs a OAuth2Defaults
Trait Implementations
impl StructuralPartialEq for Builder
Auto Trait Implementations
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more