Struct aws_sdk_ec2::input::modify_snapshot_attribute_input::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for ModifySnapshotAttributeInput
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn attribute(self, input: SnapshotAttributeName) -> Self
pub fn attribute(self, input: SnapshotAttributeName) -> Self
The snapshot attribute to modify. Only volume creation permissions can be modified.
sourcepub fn set_attribute(self, input: Option<SnapshotAttributeName>) -> Self
pub fn set_attribute(self, input: Option<SnapshotAttributeName>) -> Self
The snapshot attribute to modify. Only volume creation permissions can be modified.
sourcepub fn create_volume_permission(
self,
input: CreateVolumePermissionModifications
) -> Self
pub fn create_volume_permission(
self,
input: CreateVolumePermissionModifications
) -> Self
A JSON representation of the snapshot attribute modification.
sourcepub fn set_create_volume_permission(
self,
input: Option<CreateVolumePermissionModifications>
) -> Self
pub fn set_create_volume_permission(
self,
input: Option<CreateVolumePermissionModifications>
) -> Self
A JSON representation of the snapshot attribute modification.
sourcepub fn group_names(self, input: impl Into<String>) -> Self
pub fn group_names(self, input: impl Into<String>) -> Self
Appends an item to group_names
.
To override the contents of this collection use set_group_names
.
The group to modify for the snapshot.
sourcepub fn set_group_names(self, input: Option<Vec<String>>) -> Self
pub fn set_group_names(self, input: Option<Vec<String>>) -> Self
The group to modify for the snapshot.
sourcepub fn operation_type(self, input: OperationType) -> Self
pub fn operation_type(self, input: OperationType) -> Self
The type of operation to perform to the attribute.
sourcepub fn set_operation_type(self, input: Option<OperationType>) -> Self
pub fn set_operation_type(self, input: Option<OperationType>) -> Self
The type of operation to perform to the attribute.
sourcepub fn snapshot_id(self, input: impl Into<String>) -> Self
pub fn snapshot_id(self, input: impl Into<String>) -> Self
The ID of the snapshot.
sourcepub fn set_snapshot_id(self, input: Option<String>) -> Self
pub fn set_snapshot_id(self, input: Option<String>) -> Self
The ID of the snapshot.
sourcepub fn user_ids(self, input: impl Into<String>) -> Self
pub fn user_ids(self, input: impl Into<String>) -> Self
Appends an item to user_ids
.
To override the contents of this collection use set_user_ids
.
The account ID to modify for the snapshot.
sourcepub fn set_user_ids(self, input: Option<Vec<String>>) -> Self
pub fn set_user_ids(self, input: Option<Vec<String>>) -> Self
The account ID to modify for the snapshot.
sourcepub fn dry_run(self, input: bool) -> Self
pub fn dry_run(self, input: bool) -> Self
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn set_dry_run(self, input: Option<bool>) -> Self
pub fn set_dry_run(self, input: Option<bool>) -> Self
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
sourcepub fn build(self) -> Result<ModifySnapshotAttributeInput, BuildError>
pub fn build(self) -> Result<ModifySnapshotAttributeInput, BuildError>
Consumes the builder and constructs a ModifySnapshotAttributeInput
.
Examples found in repository?
67304 67305 67306 67307 67308 67309 67310 67311 67312 67313 67314 67315 67316 67317 67318 67319 67320 67321 67322 67323 67324 67325 67326 67327 67328 67329 67330 67331 67332 67333 67334 67335 67336 67337 67338 67339 67340 67341 67342 67343 67344 67345 67346
pub async fn customize(
self,
) -> std::result::Result<
crate::operation::customize::CustomizableOperation<
crate::operation::ModifySnapshotAttribute,
aws_http::retry::AwsResponseRetryClassifier,
>,
aws_smithy_http::result::SdkError<crate::error::ModifySnapshotAttributeError>,
> {
let handle = self.handle.clone();
let operation = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
Ok(crate::operation::customize::CustomizableOperation { handle, operation })
}
/// Sends the request and returns the response.
///
/// If an error occurs, an `SdkError` will be returned with additional details that
/// can be matched against.
///
/// By default, any retryable failures will be retried twice. Retry behavior
/// is configurable with the [RetryConfig](aws_smithy_types::retry::RetryConfig), which can be
/// set when configuring the client.
pub async fn send(
self,
) -> std::result::Result<
crate::output::ModifySnapshotAttributeOutput,
aws_smithy_http::result::SdkError<crate::error::ModifySnapshotAttributeError>,
> {
let op = self
.inner
.build()
.map_err(aws_smithy_http::result::SdkError::construction_failure)?
.make_operation(&self.handle.conf)
.await
.map_err(aws_smithy_http::result::SdkError::construction_failure)?;
self.handle.client.call(op).await
}