pub struct UpdateClusterRequest {
pub address_id: Option<String>,
pub cluster_id: String,
pub description: Option<String>,
pub forwarding_address_id: Option<String>,
pub notification: Option<Notification>,
pub resources: Option<JobResource>,
pub role_arn: Option<String>,
pub shipping_option: Option<String>,
}Fields§
§address_id: Option<String>The ID of the updated Address object.
cluster_id: StringThe cluster ID of the cluster that you want to update, for example CID123e4567-e89b-12d3-a456-426655440000.
description: Option<String>The updated description of this cluster.
forwarding_address_id: Option<String>The updated ID for the forwarding address for a cluster. This field is not supported in most regions.
notification: Option<Notification>The new or updated Notification object.
resources: Option<JobResource>The updated arrays of JobResource objects that can include updated S3Resource objects or LambdaResource objects.
role_arn: Option<String>The new role Amazon Resource Name (ARN) that you want to associate with this cluster. To create a role ARN, use the CreateRole API action in AWS Identity and Access Management (IAM).
shipping_option: Option<String>The updated shipping option value of this cluster's ShippingDetails object.
Trait Implementations§
Source§impl Clone for UpdateClusterRequest
impl Clone for UpdateClusterRequest
Source§fn clone(&self) -> UpdateClusterRequest
fn clone(&self) -> UpdateClusterRequest
Returns a duplicate 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 Debug for UpdateClusterRequest
impl Debug for UpdateClusterRequest
Source§impl Default for UpdateClusterRequest
impl Default for UpdateClusterRequest
Source§fn default() -> UpdateClusterRequest
fn default() -> UpdateClusterRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for UpdateClusterRequest
impl PartialEq for UpdateClusterRequest
Source§impl Serialize for UpdateClusterRequest
impl Serialize for UpdateClusterRequest
impl StructuralPartialEq for UpdateClusterRequest
Auto Trait Implementations§
impl Freeze for UpdateClusterRequest
impl RefUnwindSafe for UpdateClusterRequest
impl Send for UpdateClusterRequest
impl Sync for UpdateClusterRequest
impl Unpin for UpdateClusterRequest
impl UnwindSafe for UpdateClusterRequest
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