Struct aws_sdk_datazone::operation::put_environment_blueprint_configuration::PutEnvironmentBlueprintConfigurationInput
source · #[non_exhaustive]pub struct PutEnvironmentBlueprintConfigurationInput {
pub domain_identifier: Option<String>,
pub environment_blueprint_identifier: Option<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>>>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.domain_identifier: Option<String>
The identifier of the Amazon DataZone domain.
environment_blueprint_identifier: Option<String>
The 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.
Implementations§
source§impl PutEnvironmentBlueprintConfigurationInput
impl PutEnvironmentBlueprintConfigurationInput
sourcepub fn domain_identifier(&self) -> Option<&str>
pub fn domain_identifier(&self) -> Option<&str>
The identifier of the Amazon DataZone domain.
sourcepub fn environment_blueprint_identifier(&self) -> Option<&str>
pub fn environment_blueprint_identifier(&self) -> Option<&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) -> Option<&[String]>
pub fn enabled_regions(&self) -> Option<&[String]>
Specifies the enabled Amazon Web Services Regions.
source§impl PutEnvironmentBlueprintConfigurationInput
impl PutEnvironmentBlueprintConfigurationInput
sourcepub fn builder() -> PutEnvironmentBlueprintConfigurationInputBuilder
pub fn builder() -> PutEnvironmentBlueprintConfigurationInputBuilder
Creates a new builder-style object to manufacture PutEnvironmentBlueprintConfigurationInput
.
Trait Implementations§
source§impl Clone for PutEnvironmentBlueprintConfigurationInput
impl Clone for PutEnvironmentBlueprintConfigurationInput
source§fn clone(&self) -> PutEnvironmentBlueprintConfigurationInput
fn clone(&self) -> PutEnvironmentBlueprintConfigurationInput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl PartialEq for PutEnvironmentBlueprintConfigurationInput
impl PartialEq for PutEnvironmentBlueprintConfigurationInput
source§fn eq(&self, other: &PutEnvironmentBlueprintConfigurationInput) -> bool
fn eq(&self, other: &PutEnvironmentBlueprintConfigurationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PutEnvironmentBlueprintConfigurationInput
Auto Trait Implementations§
impl RefUnwindSafe for PutEnvironmentBlueprintConfigurationInput
impl Send for PutEnvironmentBlueprintConfigurationInput
impl Sync for PutEnvironmentBlueprintConfigurationInput
impl Unpin for PutEnvironmentBlueprintConfigurationInput
impl UnwindSafe for PutEnvironmentBlueprintConfigurationInput
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
Mutably borrows from an owned value. Read more