pub struct AssociateEnvironmentOperationsRoleMessage {
pub environment_name: String,
pub operations_role: String,
}
Expand description
Request to add or change the operations role used by an environment.
Fields§
§environment_name: String
The name of the environment to which to set the operations role.
operations_role: String
The Amazon Resource Name (ARN) of an existing IAM role to be used as the environment's operations role.
Trait Implementations§
Source§impl Clone for AssociateEnvironmentOperationsRoleMessage
impl Clone for AssociateEnvironmentOperationsRoleMessage
Source§fn clone(&self) -> AssociateEnvironmentOperationsRoleMessage
fn clone(&self) -> AssociateEnvironmentOperationsRoleMessage
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 Default for AssociateEnvironmentOperationsRoleMessage
impl Default for AssociateEnvironmentOperationsRoleMessage
Source§fn default() -> AssociateEnvironmentOperationsRoleMessage
fn default() -> AssociateEnvironmentOperationsRoleMessage
Returns the “default value” for a type. Read more
Source§impl PartialEq for AssociateEnvironmentOperationsRoleMessage
impl PartialEq for AssociateEnvironmentOperationsRoleMessage
Source§fn eq(&self, other: &AssociateEnvironmentOperationsRoleMessage) -> bool
fn eq(&self, other: &AssociateEnvironmentOperationsRoleMessage) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for AssociateEnvironmentOperationsRoleMessage
Auto Trait Implementations§
impl Freeze for AssociateEnvironmentOperationsRoleMessage
impl RefUnwindSafe for AssociateEnvironmentOperationsRoleMessage
impl Send for AssociateEnvironmentOperationsRoleMessage
impl Sync for AssociateEnvironmentOperationsRoleMessage
impl Unpin for AssociateEnvironmentOperationsRoleMessage
impl UnwindSafe for AssociateEnvironmentOperationsRoleMessage
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