Struct aws_sdk_ec2::operation::modify_verified_access_group_policy::ModifyVerifiedAccessGroupPolicyInput
source · #[non_exhaustive]pub struct ModifyVerifiedAccessGroupPolicyInput {
pub verified_access_group_id: Option<String>,
pub policy_enabled: Option<bool>,
pub policy_document: Option<String>,
pub client_token: Option<String>,
pub dry_run: Option<bool>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.verified_access_group_id: Option<String>
The ID of the Verified Access group.
policy_enabled: Option<bool>
The status of the Verified Access policy.
policy_document: Option<String>
The Verified Access policy document.
client_token: Option<String>
A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.
dry_run: Option<bool>
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
.
Implementations§
source§impl ModifyVerifiedAccessGroupPolicyInput
impl ModifyVerifiedAccessGroupPolicyInput
sourcepub fn verified_access_group_id(&self) -> Option<&str>
pub fn verified_access_group_id(&self) -> Option<&str>
The ID of the Verified Access group.
sourcepub fn policy_enabled(&self) -> Option<bool>
pub fn policy_enabled(&self) -> Option<bool>
The status of the Verified Access policy.
sourcepub fn policy_document(&self) -> Option<&str>
pub fn policy_document(&self) -> Option<&str>
The Verified Access policy document.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see Ensuring Idempotency.
source§impl ModifyVerifiedAccessGroupPolicyInput
impl ModifyVerifiedAccessGroupPolicyInput
sourcepub fn builder() -> ModifyVerifiedAccessGroupPolicyInputBuilder
pub fn builder() -> ModifyVerifiedAccessGroupPolicyInputBuilder
Creates a new builder-style object to manufacture ModifyVerifiedAccessGroupPolicyInput
.
Trait Implementations§
source§impl Clone for ModifyVerifiedAccessGroupPolicyInput
impl Clone for ModifyVerifiedAccessGroupPolicyInput
source§fn clone(&self) -> ModifyVerifiedAccessGroupPolicyInput
fn clone(&self) -> ModifyVerifiedAccessGroupPolicyInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ModifyVerifiedAccessGroupPolicyInput> for ModifyVerifiedAccessGroupPolicyInput
impl PartialEq<ModifyVerifiedAccessGroupPolicyInput> for ModifyVerifiedAccessGroupPolicyInput
source§fn eq(&self, other: &ModifyVerifiedAccessGroupPolicyInput) -> bool
fn eq(&self, other: &ModifyVerifiedAccessGroupPolicyInput) -> bool
self
and other
values to be equal, and is used
by ==
.