Struct aws_sdk_datazone::operation::create_group_profile::builders::CreateGroupProfileInputBuilder
source · #[non_exhaustive]pub struct CreateGroupProfileInputBuilder { /* private fields */ }
Expand description
A builder for CreateGroupProfileInput
.
Implementations§
source§impl CreateGroupProfileInputBuilder
impl CreateGroupProfileInputBuilder
sourcepub fn domain_identifier(self, input: impl Into<String>) -> Self
pub fn domain_identifier(self, input: impl Into<String>) -> Self
The identifier of the Amazon DataZone domain in which the group profile is created.
This field is required.sourcepub fn set_domain_identifier(self, input: Option<String>) -> Self
pub fn set_domain_identifier(self, input: Option<String>) -> Self
The identifier of the Amazon DataZone domain in which the group profile is created.
sourcepub fn get_domain_identifier(&self) -> &Option<String>
pub fn get_domain_identifier(&self) -> &Option<String>
The identifier of the Amazon DataZone domain in which the group profile is created.
sourcepub fn group_identifier(self, input: impl Into<String>) -> Self
pub fn group_identifier(self, input: impl Into<String>) -> Self
The identifier of the group for which the group profile is created.
This field is required.sourcepub fn set_group_identifier(self, input: Option<String>) -> Self
pub fn set_group_identifier(self, input: Option<String>) -> Self
The identifier of the group for which the group profile is created.
sourcepub fn get_group_identifier(&self) -> &Option<String>
pub fn get_group_identifier(&self) -> &Option<String>
The identifier of the group for which the group profile is created.
sourcepub fn client_token(self, input: impl Into<String>) -> Self
pub fn client_token(self, input: impl Into<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn set_client_token(self, input: Option<String>) -> Self
pub fn set_client_token(self, input: Option<String>) -> Self
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn get_client_token(&self) -> &Option<String>
pub fn get_client_token(&self) -> &Option<String>
A unique, case-sensitive identifier that is provided to ensure the idempotency of the request.
sourcepub fn build(self) -> Result<CreateGroupProfileInput, BuildError>
pub fn build(self) -> Result<CreateGroupProfileInput, BuildError>
Consumes the builder and constructs a CreateGroupProfileInput
.
source§impl CreateGroupProfileInputBuilder
impl CreateGroupProfileInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<CreateGroupProfileOutput, SdkError<CreateGroupProfileError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<CreateGroupProfileOutput, SdkError<CreateGroupProfileError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for CreateGroupProfileInputBuilder
impl Clone for CreateGroupProfileInputBuilder
source§fn clone(&self) -> CreateGroupProfileInputBuilder
fn clone(&self) -> CreateGroupProfileInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CreateGroupProfileInputBuilder
impl Default for CreateGroupProfileInputBuilder
source§fn default() -> CreateGroupProfileInputBuilder
fn default() -> CreateGroupProfileInputBuilder
source§impl PartialEq for CreateGroupProfileInputBuilder
impl PartialEq for CreateGroupProfileInputBuilder
source§fn eq(&self, other: &CreateGroupProfileInputBuilder) -> bool
fn eq(&self, other: &CreateGroupProfileInputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateGroupProfileInputBuilder
Auto Trait Implementations§
impl Freeze for CreateGroupProfileInputBuilder
impl RefUnwindSafe for CreateGroupProfileInputBuilder
impl Send for CreateGroupProfileInputBuilder
impl Sync for CreateGroupProfileInputBuilder
impl Unpin for CreateGroupProfileInputBuilder
impl UnwindSafe for CreateGroupProfileInputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more