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