Struct aws_sdk_datazone::operation::get_environment_blueprint_configuration::GetEnvironmentBlueprintConfigurationOutput
source · #[non_exhaustive]pub struct GetEnvironmentBlueprintConfigurationOutput {
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>,
pub provisioning_configurations: Option<Vec<ProvisioningConfiguration>>,
/* 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.domain_id: String
The ID of the Amazon DataZone domain where this blueprint exists.
environment_blueprint_id: String
The ID of the blueprint.
provisioning_role_arn: Option<String>
The ARN of the provisioning role with which this blueprint is created.
manage_access_role_arn: Option<String>
The ARN of the manage access role with which this blueprint is created.
enabled_regions: Option<Vec<String>>
The Amazon Web Services regions in which this blueprint is enabled.
regional_parameters: Option<HashMap<String, HashMap<String, String>>>
The regional parameters of the blueprint.
created_at: Option<DateTime>
The timestamp of when this blueprint was created.
updated_at: Option<DateTime>
The timestamp of when this blueprint was upated.
provisioning_configurations: Option<Vec<ProvisioningConfiguration>>
The provisioning configuration of a blueprint.
Implementations§
source§impl GetEnvironmentBlueprintConfigurationOutput
impl GetEnvironmentBlueprintConfigurationOutput
sourcepub fn domain_id(&self) -> &str
pub fn domain_id(&self) -> &str
The ID of the Amazon DataZone domain where this blueprint exists.
sourcepub fn environment_blueprint_id(&self) -> &str
pub fn environment_blueprint_id(&self) -> &str
The ID of the blueprint.
sourcepub fn provisioning_role_arn(&self) -> Option<&str>
pub fn provisioning_role_arn(&self) -> Option<&str>
The ARN of the provisioning role with which this blueprint is created.
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 with which this blueprint is created.
sourcepub fn enabled_regions(&self) -> &[String]
pub fn enabled_regions(&self) -> &[String]
The Amazon Web Services regions in which this blueprint is enabled.
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 blueprint.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when this blueprint was created.
sourcepub fn updated_at(&self) -> Option<&DateTime>
pub fn updated_at(&self) -> Option<&DateTime>
The timestamp of when this blueprint was upated.
sourcepub fn provisioning_configurations(&self) -> &[ProvisioningConfiguration]
pub fn provisioning_configurations(&self) -> &[ProvisioningConfiguration]
The provisioning configuration of a blueprint.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .provisioning_configurations.is_none()
.
source§impl GetEnvironmentBlueprintConfigurationOutput
impl GetEnvironmentBlueprintConfigurationOutput
sourcepub fn builder() -> GetEnvironmentBlueprintConfigurationOutputBuilder
pub fn builder() -> GetEnvironmentBlueprintConfigurationOutputBuilder
Creates a new builder-style object to manufacture GetEnvironmentBlueprintConfigurationOutput
.
Trait Implementations§
source§impl Clone for GetEnvironmentBlueprintConfigurationOutput
impl Clone for GetEnvironmentBlueprintConfigurationOutput
source§fn clone(&self) -> GetEnvironmentBlueprintConfigurationOutput
fn clone(&self) -> GetEnvironmentBlueprintConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for GetEnvironmentBlueprintConfigurationOutput
impl PartialEq for GetEnvironmentBlueprintConfigurationOutput
source§fn eq(&self, other: &GetEnvironmentBlueprintConfigurationOutput) -> bool
fn eq(&self, other: &GetEnvironmentBlueprintConfigurationOutput) -> bool
self
and other
values to be equal, and is used by ==
.source§impl RequestId for GetEnvironmentBlueprintConfigurationOutput
impl RequestId for GetEnvironmentBlueprintConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None
if the service could not be reached.impl StructuralPartialEq for GetEnvironmentBlueprintConfigurationOutput
Auto Trait Implementations§
impl Freeze for GetEnvironmentBlueprintConfigurationOutput
impl RefUnwindSafe for GetEnvironmentBlueprintConfigurationOutput
impl Send for GetEnvironmentBlueprintConfigurationOutput
impl Sync for GetEnvironmentBlueprintConfigurationOutput
impl Unpin for GetEnvironmentBlueprintConfigurationOutput
impl UnwindSafe for GetEnvironmentBlueprintConfigurationOutput
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