Struct aws_sdk_ec2::operation::modify_verified_access_endpoint_policy::ModifyVerifiedAccessEndpointPolicyInput
source · #[non_exhaustive]pub struct ModifyVerifiedAccessEndpointPolicyInput {
pub verified_access_endpoint_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_endpoint_id: Option<String>
The ID of the Verified Access endpoint.
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 ModifyVerifiedAccessEndpointPolicyInput
impl ModifyVerifiedAccessEndpointPolicyInput
sourcepub fn verified_access_endpoint_id(&self) -> Option<&str>
pub fn verified_access_endpoint_id(&self) -> Option<&str>
The ID of the Verified Access endpoint.
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 ModifyVerifiedAccessEndpointPolicyInput
impl ModifyVerifiedAccessEndpointPolicyInput
sourcepub fn builder() -> ModifyVerifiedAccessEndpointPolicyInputBuilder
pub fn builder() -> ModifyVerifiedAccessEndpointPolicyInputBuilder
Creates a new builder-style object to manufacture ModifyVerifiedAccessEndpointPolicyInput
.
Trait Implementations§
source§impl Clone for ModifyVerifiedAccessEndpointPolicyInput
impl Clone for ModifyVerifiedAccessEndpointPolicyInput
source§fn clone(&self) -> ModifyVerifiedAccessEndpointPolicyInput
fn clone(&self) -> ModifyVerifiedAccessEndpointPolicyInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq<ModifyVerifiedAccessEndpointPolicyInput> for ModifyVerifiedAccessEndpointPolicyInput
impl PartialEq<ModifyVerifiedAccessEndpointPolicyInput> for ModifyVerifiedAccessEndpointPolicyInput
source§fn eq(&self, other: &ModifyVerifiedAccessEndpointPolicyInput) -> bool
fn eq(&self, other: &ModifyVerifiedAccessEndpointPolicyInput) -> bool
self
and other
values to be equal, and is used
by ==
.