Struct aws_sdk_datazone::types::EnvironmentProfileSummary
source · #[non_exhaustive]pub struct EnvironmentProfileSummary {
pub id: Option<String>,
pub domain_id: Option<String>,
pub aws_account_id: Option<String>,
pub aws_account_region: Option<String>,
pub created_by: Option<String>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
pub name: Option<String>,
pub description: Option<String>,
pub environment_blueprint_id: Option<String>,
pub project_id: Option<String>,
}
Expand description
The details of an environment profile.
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: Option<String>
The identifier of the environment profile.
domain_id: Option<String>
The identifier of the Amazon DataZone domain in which the environment profile exists.
aws_account_id: Option<String>
The identifier of an Amazon Web Services account in which an environment profile exists.
aws_account_region: Option<String>
The Amazon Web Services Region in which an environment profile exists.
created_by: Option<String>
The Amazon DataZone user who created the environment profile.
created_at: Option<DateTime>
The timestamp of when an environment profile was created.
updated_at: Option<DateTime>
The timestamp of when the environment profile was updated.
name: Option<String>
The name of the environment profile.
description: Option<String>
The description of the environment profile.
environment_blueprint_id: Option<String>
The identifier of a blueprint with which an environment profile is created.
project_id: Option<String>
The identifier of a project in which an environment profile exists.
Implementations§
source§impl EnvironmentProfileSummary
impl EnvironmentProfileSummary
sourcepub fn domain_id(&self) -> Option<&str>
pub fn domain_id(&self) -> Option<&str>
The identifier of the Amazon DataZone domain in which the environment profile exists.
sourcepub fn aws_account_id(&self) -> Option<&str>
pub fn aws_account_id(&self) -> Option<&str>
The identifier of an Amazon Web Services account in which an environment profile exists.
sourcepub fn aws_account_region(&self) -> Option<&str>
pub fn aws_account_region(&self) -> Option<&str>
The Amazon Web Services Region in which an environment profile exists.
sourcepub fn created_by(&self) -> Option<&str>
pub fn created_by(&self) -> Option<&str>
The Amazon DataZone user who created the environment profile.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when an environment profile was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the environment profile was updated.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description of the environment profile.
sourcepub fn environment_blueprint_id(&self) -> Option<&str>
pub fn environment_blueprint_id(&self) -> Option<&str>
The identifier of a blueprint with which an environment profile is created.
sourcepub fn project_id(&self) -> Option<&str>
pub fn project_id(&self) -> Option<&str>
The identifier of a project in which an environment profile exists.
source§impl EnvironmentProfileSummary
impl EnvironmentProfileSummary
sourcepub fn builder() -> EnvironmentProfileSummaryBuilder
pub fn builder() -> EnvironmentProfileSummaryBuilder
Creates a new builder-style object to manufacture EnvironmentProfileSummary
.
Trait Implementations§
source§impl Clone for EnvironmentProfileSummary
impl Clone for EnvironmentProfileSummary
source§fn clone(&self) -> EnvironmentProfileSummary
fn clone(&self) -> EnvironmentProfileSummary
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for EnvironmentProfileSummary
impl Debug for EnvironmentProfileSummary
source§impl PartialEq for EnvironmentProfileSummary
impl PartialEq for EnvironmentProfileSummary
source§fn eq(&self, other: &EnvironmentProfileSummary) -> bool
fn eq(&self, other: &EnvironmentProfileSummary) -> bool
self
and other
values to be equal, and is used
by ==
.