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 ==
.