#[non_exhaustive]pub struct GetEnvironmentProfileOutput {
pub id: String,
pub domain_id: String,
pub aws_account_id: Option<String>,
pub aws_account_region: Option<String>,
pub created_by: String,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub name: String,
pub description: Option<String>,
pub environment_blueprint_id: String,
pub project_id: Option<String>,
pub user_parameters: Option<Vec<CustomParameter>>,
/* private fields */
}
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.id: String
The ID of the environment profile.
domain_id: String
The ID of the Amazon DataZone domain in which this environment profile exists.
aws_account_id: Option<String>
The ID of the Amazon Web Services account where this environment profile exists.
aws_account_region: Option<String>
The Amazon Web Services region where this environment profile exists.
created_by: String
The Amazon DataZone user who created this environment profile.
created_at: Option<DateTime>
The timestamp of when this environment profile was created.
updated_at: Option<DateTime>
The timestamp of when this environment profile was upated.
name: String
The name of the environment profile.
description: Option<String>
The description of the environment profile.
environment_blueprint_id: String
The ID of the blueprint with which this environment profile is created.
project_id: Option<String>
The ID of the Amazon DataZone project in which this environment profile is created.
user_parameters: Option<Vec<CustomParameter>>
The user parameters of the environment profile.
Implementations§
source§impl GetEnvironmentProfileOutput
impl GetEnvironmentProfileOutput
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The ID of the Amazon DataZone domain in which this environment profile exists.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account where this environment profile exists.
sourcepub fn aws_account_region(&self) -> Option<&str>
pub fn aws_account_region(&self) -> Option<&str>
The Amazon Web Services region where this environment profile exists.
sourcepub fn created_by(&self) -> &str
pub fn created_by(&self) -> &str
The Amazon DataZone user who created this environment profile.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when this environment profile was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when this environment profile was upated.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the environment profile.
sourcepub fn environment_blueprint_id(&self) -> &str
pub fn environment_blueprint_id(&self) -> &str
The ID of the blueprint with which this environment profile is created.
sourcepub fn project_id(&self) -> Option<&str>
pub fn project_id(&self) -> Option<&str>
The ID of the Amazon DataZone project in which this environment profile is created.
sourcepub fn user_parameters(&self) -> &[CustomParameter]
pub fn user_parameters(&self) -> &[CustomParameter]
The user parameters of the 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()
.
source§impl GetEnvironmentProfileOutput
impl GetEnvironmentProfileOutput
sourcepub fn builder() -> GetEnvironmentProfileOutputBuilder
pub fn builder() -> GetEnvironmentProfileOutputBuilder
Creates a new builder-style object to manufacture GetEnvironmentProfileOutput
.
Trait Implementations§
source§impl Clone for GetEnvironmentProfileOutput
impl Clone for GetEnvironmentProfileOutput
source§fn clone(&self) -> GetEnvironmentProfileOutput
fn clone(&self) -> GetEnvironmentProfileOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GetEnvironmentProfileOutput
impl Debug for GetEnvironmentProfileOutput
source§impl RequestId for GetEnvironmentProfileOutput
impl RequestId for GetEnvironmentProfileOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetEnvironmentProfileOutput
Auto Trait Implementations§
impl Freeze for GetEnvironmentProfileOutput
impl RefUnwindSafe for GetEnvironmentProfileOutput
impl Send for GetEnvironmentProfileOutput
impl Sync for GetEnvironmentProfileOutput
impl Unpin for GetEnvironmentProfileOutput
impl UnwindSafe for GetEnvironmentProfileOutput
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