Struct aws_sdk_datazone::operation::get_environment_blueprint_configuration::builders::GetEnvironmentBlueprintConfigurationOutputBuilder
source · #[non_exhaustive]pub struct GetEnvironmentBlueprintConfigurationOutputBuilder { /* private fields */ }
Expand description
A builder for GetEnvironmentBlueprintConfigurationOutput
.
Implementations§
source§impl GetEnvironmentBlueprintConfigurationOutputBuilder
impl GetEnvironmentBlueprintConfigurationOutputBuilder
sourcepub fn domain_id(self, input: impl Into<String>) -> Self
pub fn domain_id(self, input: impl Into<String>) -> Self
The ID of the Amazon DataZone domain where this blueprint exists.
This field is required.sourcepub fn set_domain_id(self, input: Option<String>) -> Self
pub fn set_domain_id(self, input: Option<String>) -> Self
The ID of the Amazon DataZone domain where this blueprint exists.
sourcepub fn get_domain_id(&self) -> &Option<String>
pub fn get_domain_id(&self) -> &Option<String>
The ID of the Amazon DataZone domain where this blueprint exists.
sourcepub fn environment_blueprint_id(self, input: impl Into<String>) -> Self
pub fn environment_blueprint_id(self, input: impl Into<String>) -> Self
The ID of the blueprint.
This field is required.sourcepub fn set_environment_blueprint_id(self, input: Option<String>) -> Self
pub fn set_environment_blueprint_id(self, input: Option<String>) -> Self
The ID of the blueprint.
sourcepub fn get_environment_blueprint_id(&self) -> &Option<String>
pub fn get_environment_blueprint_id(&self) -> &Option<String>
The ID of the blueprint.
sourcepub fn provisioning_role_arn(self, input: impl Into<String>) -> Self
pub fn provisioning_role_arn(self, input: impl Into<String>) -> Self
The ARN of the provisioning role with which this blueprint is created.
sourcepub fn set_provisioning_role_arn(self, input: Option<String>) -> Self
pub fn set_provisioning_role_arn(self, input: Option<String>) -> Self
The ARN of the provisioning role with which this blueprint is created.
sourcepub fn get_provisioning_role_arn(&self) -> &Option<String>
pub fn get_provisioning_role_arn(&self) -> &Option<String>
The ARN of the provisioning role with which this blueprint is created.
sourcepub fn manage_access_role_arn(self, input: impl Into<String>) -> Self
pub fn manage_access_role_arn(self, input: impl Into<String>) -> Self
The ARN of the manage access role with which this blueprint is created.
sourcepub fn set_manage_access_role_arn(self, input: Option<String>) -> Self
pub fn set_manage_access_role_arn(self, input: Option<String>) -> Self
The ARN of the manage access role with which this blueprint is created.
sourcepub fn get_manage_access_role_arn(&self) -> &Option<String>
pub fn get_manage_access_role_arn(&self) -> &Option<String>
The ARN of the manage access role with which this blueprint is created.
sourcepub fn enabled_regions(self, input: impl Into<String>) -> Self
pub fn enabled_regions(self, input: impl Into<String>) -> Self
Appends an item to enabled_regions
.
To override the contents of this collection use set_enabled_regions
.
The Amazon Web Services regions in which this blueprint is enabled.
sourcepub fn set_enabled_regions(self, input: Option<Vec<String>>) -> Self
pub fn set_enabled_regions(self, input: Option<Vec<String>>) -> Self
The Amazon Web Services regions in which this blueprint is enabled.
sourcepub fn get_enabled_regions(&self) -> &Option<Vec<String>>
pub fn get_enabled_regions(&self) -> &Option<Vec<String>>
The Amazon Web Services regions in which this blueprint is enabled.
sourcepub fn regional_parameters(
self,
k: impl Into<String>,
v: HashMap<String, String>,
) -> Self
pub fn regional_parameters( self, k: impl Into<String>, v: HashMap<String, String>, ) -> Self
Adds a key-value pair to regional_parameters
.
To override the contents of this collection use set_regional_parameters
.
The regional parameters of the blueprint.
sourcepub fn set_regional_parameters(
self,
input: Option<HashMap<String, HashMap<String, String>>>,
) -> Self
pub fn set_regional_parameters( self, input: Option<HashMap<String, HashMap<String, String>>>, ) -> Self
The regional parameters of the blueprint.
sourcepub fn get_regional_parameters(
&self,
) -> &Option<HashMap<String, HashMap<String, String>>>
pub fn get_regional_parameters( &self, ) -> &Option<HashMap<String, HashMap<String, String>>>
The regional parameters of the blueprint.
sourcepub fn created_at(self, input: DateTime) -> Self
pub fn created_at(self, input: DateTime) -> Self
The timestamp of when this blueprint was created.
sourcepub fn set_created_at(self, input: Option<DateTime>) -> Self
pub fn set_created_at(self, input: Option<DateTime>) -> Self
The timestamp of when this blueprint was created.
sourcepub fn get_created_at(&self) -> &Option<DateTime>
pub fn get_created_at(&self) -> &Option<DateTime>
The timestamp of when this blueprint was created.
sourcepub fn updated_at(self, input: DateTime) -> Self
pub fn updated_at(self, input: DateTime) -> Self
The timestamp of when this blueprint was upated.
sourcepub fn set_updated_at(self, input: Option<DateTime>) -> Self
pub fn set_updated_at(self, input: Option<DateTime>) -> Self
The timestamp of when this blueprint was upated.
sourcepub fn get_updated_at(&self) -> &Option<DateTime>
pub fn get_updated_at(&self) -> &Option<DateTime>
The timestamp of when this blueprint was upated.
sourcepub fn provisioning_configurations(
self,
input: ProvisioningConfiguration,
) -> Self
pub fn provisioning_configurations( self, input: ProvisioningConfiguration, ) -> Self
Appends an item to provisioning_configurations
.
To override the contents of this collection use set_provisioning_configurations
.
The provisioning configuration of a blueprint.
sourcepub fn set_provisioning_configurations(
self,
input: Option<Vec<ProvisioningConfiguration>>,
) -> Self
pub fn set_provisioning_configurations( self, input: Option<Vec<ProvisioningConfiguration>>, ) -> Self
The provisioning configuration of a blueprint.
sourcepub fn get_provisioning_configurations(
&self,
) -> &Option<Vec<ProvisioningConfiguration>>
pub fn get_provisioning_configurations( &self, ) -> &Option<Vec<ProvisioningConfiguration>>
The provisioning configuration of a blueprint.
sourcepub fn build(
self,
) -> Result<GetEnvironmentBlueprintConfigurationOutput, BuildError>
pub fn build( self, ) -> Result<GetEnvironmentBlueprintConfigurationOutput, BuildError>
Consumes the builder and constructs a GetEnvironmentBlueprintConfigurationOutput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for GetEnvironmentBlueprintConfigurationOutputBuilder
impl Clone for GetEnvironmentBlueprintConfigurationOutputBuilder
source§fn clone(&self) -> GetEnvironmentBlueprintConfigurationOutputBuilder
fn clone(&self) -> GetEnvironmentBlueprintConfigurationOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for GetEnvironmentBlueprintConfigurationOutputBuilder
impl Default for GetEnvironmentBlueprintConfigurationOutputBuilder
source§fn default() -> GetEnvironmentBlueprintConfigurationOutputBuilder
fn default() -> GetEnvironmentBlueprintConfigurationOutputBuilder
source§impl PartialEq for GetEnvironmentBlueprintConfigurationOutputBuilder
impl PartialEq for GetEnvironmentBlueprintConfigurationOutputBuilder
source§fn eq(&self, other: &GetEnvironmentBlueprintConfigurationOutputBuilder) -> bool
fn eq(&self, other: &GetEnvironmentBlueprintConfigurationOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetEnvironmentBlueprintConfigurationOutputBuilder
Auto Trait Implementations§
impl Freeze for GetEnvironmentBlueprintConfigurationOutputBuilder
impl RefUnwindSafe for GetEnvironmentBlueprintConfigurationOutputBuilder
impl Send for GetEnvironmentBlueprintConfigurationOutputBuilder
impl Sync for GetEnvironmentBlueprintConfigurationOutputBuilder
impl Unpin for GetEnvironmentBlueprintConfigurationOutputBuilder
impl UnwindSafe for GetEnvironmentBlueprintConfigurationOutputBuilder
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