#[non_exhaustive]pub struct CreateEnvironmentInput {
pub project_identifier: Option<String>,
pub domain_identifier: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub environment_profile_identifier: Option<String>,
pub user_parameters: Option<Vec<EnvironmentParameter>>,
pub glossary_terms: Option<Vec<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.project_identifier: Option<String>
The identifier of the Amazon DataZone project in which this environment is created.
domain_identifier: Option<String>
The identifier of the Amazon DataZone domain in which the environment is created.
description: Option<String>
The description of the Amazon DataZone environment.
name: Option<String>
The name of the Amazon DataZone environment.
environment_profile_identifier: Option<String>
The identifier of the environment profile that is used to create this Amazon DataZone environment.
user_parameters: Option<Vec<EnvironmentParameter>>
The user parameters of this Amazon DataZone environment.
glossary_terms: Option<Vec<String>>
The glossary terms that can be used in this Amazon DataZone environment.
Implementations§
source§impl CreateEnvironmentInput
impl CreateEnvironmentInput
sourcepub fn project_identifier(&self) -> Option<&str>
pub fn project_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone project in which this environment is created.
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which the environment is created.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the Amazon DataZone environment.
sourcepub fn environment_profile_identifier(&self) -> Option<&str>
pub fn environment_profile_identifier(&self) -> Option<&str>
The identifier of the environment profile that is used to create this Amazon DataZone environment.
sourcepub fn user_parameters(&self) -> Option<&[EnvironmentParameter]>
pub fn user_parameters(&self) -> Option<&[EnvironmentParameter]>
The user parameters of this Amazon DataZone environment.
sourcepub fn glossary_terms(&self) -> Option<&[String]>
pub fn glossary_terms(&self) -> Option<&[String]>
The glossary terms that can be used in this Amazon DataZone environment.
source§impl CreateEnvironmentInput
impl CreateEnvironmentInput
sourcepub fn builder() -> CreateEnvironmentInputBuilder
pub fn builder() -> CreateEnvironmentInputBuilder
Creates a new builder-style object to manufacture CreateEnvironmentInput
.
Trait Implementations§
source§impl Clone for CreateEnvironmentInput
impl Clone for CreateEnvironmentInput
source§fn clone(&self) -> CreateEnvironmentInput
fn clone(&self) -> CreateEnvironmentInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CreateEnvironmentInput
impl Debug for CreateEnvironmentInput
source§impl PartialEq for CreateEnvironmentInput
impl PartialEq for CreateEnvironmentInput
source§fn eq(&self, other: &CreateEnvironmentInput) -> bool
fn eq(&self, other: &CreateEnvironmentInput) -> bool
self
and other
values to be equal, and is used
by ==
.