Struct aws_sdk_datazone::operation::create_environment_profile::CreateEnvironmentProfileInput
source · #[non_exhaustive]pub struct CreateEnvironmentProfileInput {
pub domain_identifier: Option<String>,
pub name: Option<String>,
pub description: Option<String>,
pub environment_blueprint_identifier: Option<String>,
pub project_identifier: 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 ID of the Amazon DataZone domain in which this environment profile is created.
name: Option<String>
The name of this Amazon DataZone environment profile.
description: Option<String>
The description of this Amazon DataZone environment profile.
environment_blueprint_identifier: Option<String>
The ID of the blueprint with which this environment profile is created.
project_identifier: Option<String>
The identifier of the project in which to create the environment profile.
user_parameters: Option<Vec<EnvironmentParameter>>
The user parameters of this Amazon DataZone environment profile.
aws_account_id: Option<String>
The Amazon Web Services account in which the Amazon DataZone environment is created.
aws_account_region: Option<String>
The Amazon Web Services region in which this environment profile is created.
Implementations§
source§impl CreateEnvironmentProfileInput
impl CreateEnvironmentProfileInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The ID of the Amazon DataZone domain in which this environment profile is created.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of this Amazon DataZone environment profile.
sourcepub fn environment_blueprint_identifier(&self) -> Option<&str>
pub fn environment_blueprint_identifier(&self) -> Option<&str>
The ID of the blueprint with which this environment profile is created.
sourcepub fn project_identifier(&self) -> Option<&str>
pub fn project_identifier(&self) -> Option<&str>
The identifier of the project in which to create the environment profile.
sourcepub fn user_parameters(&self) -> &[EnvironmentParameter]
pub fn user_parameters(&self) -> &[EnvironmentParameter]
The user parameters of this Amazon DataZone environment profile.
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 the Amazon DataZone environment is created.
sourcepub fn aws_account_region(&self) -> Option<&str>
pub fn aws_account_region(&self) -> Option<&str>
The Amazon Web Services region in which this environment profile is created.
source§impl CreateEnvironmentProfileInput
impl CreateEnvironmentProfileInput
sourcepub fn builder() -> CreateEnvironmentProfileInputBuilder
pub fn builder() -> CreateEnvironmentProfileInputBuilder
Creates a new builder-style object to manufacture CreateEnvironmentProfileInput
.
Trait Implementations§
source§impl Clone for CreateEnvironmentProfileInput
impl Clone for CreateEnvironmentProfileInput
source§fn clone(&self) -> CreateEnvironmentProfileInput
fn clone(&self) -> CreateEnvironmentProfileInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for CreateEnvironmentProfileInput
impl PartialEq for CreateEnvironmentProfileInput
source§fn eq(&self, other: &CreateEnvironmentProfileInput) -> bool
fn eq(&self, other: &CreateEnvironmentProfileInput) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateEnvironmentProfileInput
Auto Trait Implementations§
impl Freeze for CreateEnvironmentProfileInput
impl RefUnwindSafe for CreateEnvironmentProfileInput
impl Send for CreateEnvironmentProfileInput
impl Sync for CreateEnvironmentProfileInput
impl Unpin for CreateEnvironmentProfileInput
impl UnwindSafe for CreateEnvironmentProfileInput
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