#[non_exhaustive]pub struct EnvironmentBlueprintConfigurationItem {
pub domain_id: String,
pub environment_blueprint_id: String,
pub provisioning_role_arn: Option<String>,
pub manage_access_role_arn: Option<String>,
pub enabled_regions: Option<Vec<String>>,
pub regional_parameters: Option<HashMap<String, HashMap<String, String>>>,
pub created_at: Option<DateTime>,
pub updated_at: Option<DateTime>,
}
Expand description
The configuration details of an environment blueprint.
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_id: String
The identifier of the Amazon DataZone domain in which an environment blueprint exists.
environment_blueprint_id: String
The identifier of the environment blueprint.
provisioning_role_arn: Option<String>
The ARN of the provisioning role specified in the environment blueprint configuration.
manage_access_role_arn: Option<String>
The ARN of the manage access role specified in the environment blueprint configuration.
enabled_regions: Option<Vec<String>>
The enabled Amazon Web Services Regions specified in a blueprint configuration.
regional_parameters: Option<HashMap<String, HashMap<String, String>>>
The regional parameters of the environment blueprint.
created_at: Option<DateTime>
The timestamp of when an environment blueprint was created.
updated_at: Option<DateTime>
The timestamp of when the environment blueprint was updated.
Implementations§
source§impl EnvironmentBlueprintConfigurationItem
impl EnvironmentBlueprintConfigurationItem
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The identifier of the Amazon DataZone domain in which an environment blueprint exists.
sourcepub fn environment_blueprint_id(&self) -> &str
pub fn environment_blueprint_id(&self) -> &str
The identifier of the environment blueprint.
sourcepub fn provisioning_role_arn(&self) -> Option<&str>
pub fn provisioning_role_arn(&self) -> Option<&str>
The ARN of the provisioning role specified in the environment blueprint configuration.
sourcepub fn manage_access_role_arn(&self) -> Option<&str>
pub fn manage_access_role_arn(&self) -> Option<&str>
The ARN of the manage access role specified in the environment blueprint configuration.
sourcepub fn enabled_regions(&self) -> &[String]
pub fn enabled_regions(&self) -> &[String]
The enabled Amazon Web Services Regions specified in a blueprint configuration.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .enabled_regions.is_none()
.
sourcepub fn regional_parameters(
&self
) -> Option<&HashMap<String, HashMap<String, String>>>
pub fn regional_parameters( &self ) -> Option<&HashMap<String, HashMap<String, String>>>
The regional parameters of the environment blueprint.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when an environment blueprint was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when the environment blueprint was updated.
source§impl EnvironmentBlueprintConfigurationItem
impl EnvironmentBlueprintConfigurationItem
sourcepub fn builder() -> EnvironmentBlueprintConfigurationItemBuilder
pub fn builder() -> EnvironmentBlueprintConfigurationItemBuilder
Creates a new builder-style object to manufacture EnvironmentBlueprintConfigurationItem
.
Trait Implementations§
source§impl Clone for EnvironmentBlueprintConfigurationItem
impl Clone for EnvironmentBlueprintConfigurationItem
source§fn clone(&self) -> EnvironmentBlueprintConfigurationItem
fn clone(&self) -> EnvironmentBlueprintConfigurationItem
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for EnvironmentBlueprintConfigurationItem
impl PartialEq for EnvironmentBlueprintConfigurationItem
source§fn eq(&self, other: &EnvironmentBlueprintConfigurationItem) -> bool
fn eq(&self, other: &EnvironmentBlueprintConfigurationItem) -> bool
self
and other
values to be equal, and is used
by ==
.