pub struct PutAccountSettingDefaultRequest {
pub name: String,
pub value: String,
}
Fields§
§name: String
The resource name for which to modify the account setting. If serviceLongArnFormat
is specified, the ARN for your Amazon ECS services is affected. If taskLongArnFormat
is specified, the ARN and resource ID for your Amazon ECS tasks is affected. If containerInstanceLongArnFormat
is specified, the ARN and resource ID for your Amazon ECS container instances is affected. If awsvpcTrunking
is specified, the ENI limit for your Amazon ECS container instances is affected. If containerInsights
is specified, the default setting for CloudWatch Container Insights for your clusters is affected.
value: String
The account setting value for the specified principal ARN. Accepted values are enabled
and disabled
.
Trait Implementations§
Source§impl Clone for PutAccountSettingDefaultRequest
impl Clone for PutAccountSettingDefaultRequest
Source§fn clone(&self) -> PutAccountSettingDefaultRequest
fn clone(&self) -> PutAccountSettingDefaultRequest
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 PutAccountSettingDefaultRequest
impl Default for PutAccountSettingDefaultRequest
Source§fn default() -> PutAccountSettingDefaultRequest
fn default() -> PutAccountSettingDefaultRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for PutAccountSettingDefaultRequest
impl PartialEq for PutAccountSettingDefaultRequest
Source§fn eq(&self, other: &PutAccountSettingDefaultRequest) -> bool
fn eq(&self, other: &PutAccountSettingDefaultRequest) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PutAccountSettingDefaultRequest
Auto Trait Implementations§
impl Freeze for PutAccountSettingDefaultRequest
impl RefUnwindSafe for PutAccountSettingDefaultRequest
impl Send for PutAccountSettingDefaultRequest
impl Sync for PutAccountSettingDefaultRequest
impl Unpin for PutAccountSettingDefaultRequest
impl UnwindSafe for PutAccountSettingDefaultRequest
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