Struct aws_sdk_datazone::operation::update_environment_profile::UpdateEnvironmentProfileInput
source · #[non_exhaustive]pub struct UpdateEnvironmentProfileInput {
pub domain_identifier: Option<String>,
pub identifier: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub user_parameters: Option<Vec<EnvironmentParameter>>,
pub aws_account_id: Option<String>,
pub aws_account_region: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which an environment profile is to be updated.
identifier: Option<String>
The identifier of the environment profile that is to be updated.
name: Option<String>
The name to be updated as part of the UpdateEnvironmentProfile
action.
description: Option<String>
The description to be updated as part of the UpdateEnvironmentProfile
action.
user_parameters: Option<Vec<EnvironmentParameter>>
The user parameters to be updated as part of the UpdateEnvironmentProfile
action.
aws_account_id: Option<String>
The Amazon Web Services account in which a specified environment profile is to be udpated.
aws_account_region: Option<String>
The Amazon Web Services Region in which a specified environment profile is to be updated.
Implementations§
source§impl UpdateEnvironmentProfileInput
impl UpdateEnvironmentProfileInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which an environment profile is to be updated.
sourcepub fn identifier(&self) -> Option<&str>
pub fn identifier(&self) -> Option<&str>
The identifier of the environment profile that is to be updated.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name to be updated as part of the UpdateEnvironmentProfile
action.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description to be updated as part of the UpdateEnvironmentProfile
action.
sourcepub fn user_parameters(&self) -> &[EnvironmentParameter]
pub fn user_parameters(&self) -> &[EnvironmentParameter]
The user parameters to be updated as part of the UpdateEnvironmentProfile
action.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .user_parameters.is_none()
.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The Amazon Web Services account in which a specified environment profile is to be udpated.
sourcepub fn aws_account_region(&self) -> Option<&str>
pub fn aws_account_region(&self) -> Option<&str>
The Amazon Web Services Region in which a specified environment profile is to be updated.
source§impl UpdateEnvironmentProfileInput
impl UpdateEnvironmentProfileInput
sourcepub fn builder() -> UpdateEnvironmentProfileInputBuilder
pub fn builder() -> UpdateEnvironmentProfileInputBuilder
Creates a new builder-style object to manufacture UpdateEnvironmentProfileInput
.
Trait Implementations§
source§impl Clone for UpdateEnvironmentProfileInput
impl Clone for UpdateEnvironmentProfileInput
source§fn clone(&self) -> UpdateEnvironmentProfileInput
fn clone(&self) -> UpdateEnvironmentProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for UpdateEnvironmentProfileInput
impl PartialEq for UpdateEnvironmentProfileInput
source§fn eq(&self, other: &UpdateEnvironmentProfileInput) -> bool
fn eq(&self, other: &UpdateEnvironmentProfileInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateEnvironmentProfileInput
Auto Trait Implementations§
impl Freeze for UpdateEnvironmentProfileInput
impl RefUnwindSafe for UpdateEnvironmentProfileInput
impl Send for UpdateEnvironmentProfileInput
impl Sync for UpdateEnvironmentProfileInput
impl Unpin for UpdateEnvironmentProfileInput
impl UnwindSafe for UpdateEnvironmentProfileInput
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