Struct aws_sdk_datazone::operation::put_environment_blueprint_configuration::PutEnvironmentBlueprintConfigurationOutput
source · #[non_exhaustive]pub struct PutEnvironmentBlueprintConfigurationOutput {
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>,
/* 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: StringThe identifier of the Amazon DataZone domain.
environment_blueprint_id: StringThe identifier of the environment blueprint.
provisioning_role_arn: Option<String>The ARN of the provisioning role.
manage_access_role_arn: Option<String>The ARN of the manage access role.
enabled_regions: Option<Vec<String>>Specifies the enabled Amazon Web Services Regions.
regional_parameters: Option<HashMap<String, HashMap<String, String>>>The regional parameters in the environment blueprint.
created_at: Option<DateTime>The timestamp of when the environment blueprint was created.
updated_at: Option<DateTime>The timestamp of when the environment blueprint was updated.
Implementations§
source§impl PutEnvironmentBlueprintConfigurationOutput
impl PutEnvironmentBlueprintConfigurationOutput
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.
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.
sourcepub fn enabled_regions(&self) -> &[String]
pub fn enabled_regions(&self) -> &[String]
Specifies the enabled Amazon Web Services Regions.
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 in the environment blueprint.
sourcepub fn created_at(&self) -> Option<&DateTime>
pub fn created_at(&self) -> Option<&DateTime>
The timestamp of when the 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 PutEnvironmentBlueprintConfigurationOutput
impl PutEnvironmentBlueprintConfigurationOutput
sourcepub fn builder() -> PutEnvironmentBlueprintConfigurationOutputBuilder
pub fn builder() -> PutEnvironmentBlueprintConfigurationOutputBuilder
Creates a new builder-style object to manufacture PutEnvironmentBlueprintConfigurationOutput.
Trait Implementations§
source§impl Clone for PutEnvironmentBlueprintConfigurationOutput
impl Clone for PutEnvironmentBlueprintConfigurationOutput
source§fn clone(&self) -> PutEnvironmentBlueprintConfigurationOutput
fn clone(&self) -> PutEnvironmentBlueprintConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl PartialEq for PutEnvironmentBlueprintConfigurationOutput
impl PartialEq for PutEnvironmentBlueprintConfigurationOutput
source§fn eq(&self, other: &PutEnvironmentBlueprintConfigurationOutput) -> bool
fn eq(&self, other: &PutEnvironmentBlueprintConfigurationOutput) -> bool
self and other values to be equal, and is used
by ==.source§impl RequestId for PutEnvironmentBlueprintConfigurationOutput
impl RequestId for PutEnvironmentBlueprintConfigurationOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.impl StructuralPartialEq for PutEnvironmentBlueprintConfigurationOutput
Auto Trait Implementations§
impl Freeze for PutEnvironmentBlueprintConfigurationOutput
impl RefUnwindSafe for PutEnvironmentBlueprintConfigurationOutput
impl Send for PutEnvironmentBlueprintConfigurationOutput
impl Sync for PutEnvironmentBlueprintConfigurationOutput
impl Unpin for PutEnvironmentBlueprintConfigurationOutput
impl UnwindSafe for PutEnvironmentBlueprintConfigurationOutput
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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