pub struct CreateTrafficMirrorTargetRequest {
pub client_token: Option<String>,
pub description: Option<String>,
pub dry_run: Option<bool>,
pub network_interface_id: Option<String>,
pub network_load_balancer_arn: Option<String>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}Fields§
§client_token: Option<String>Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see How to Ensure Idempotency.
description: Option<String>The description of the Traffic Mirror target.
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.
network_interface_id: Option<String>The network interface ID that is associated with the target.
network_load_balancer_arn: Option<String>The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.
tag_specifications: Option<Vec<TagSpecification>>The tags to assign to the Traffic Mirror target.
Trait Implementations§
Source§impl Clone for CreateTrafficMirrorTargetRequest
impl Clone for CreateTrafficMirrorTargetRequest
Source§fn clone(&self) -> CreateTrafficMirrorTargetRequest
fn clone(&self) -> CreateTrafficMirrorTargetRequest
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 CreateTrafficMirrorTargetRequest
impl Default for CreateTrafficMirrorTargetRequest
Source§fn default() -> CreateTrafficMirrorTargetRequest
fn default() -> CreateTrafficMirrorTargetRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateTrafficMirrorTargetRequest
impl PartialEq for CreateTrafficMirrorTargetRequest
Source§fn eq(&self, other: &CreateTrafficMirrorTargetRequest) -> bool
fn eq(&self, other: &CreateTrafficMirrorTargetRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CreateTrafficMirrorTargetRequest
Auto Trait Implementations§
impl Freeze for CreateTrafficMirrorTargetRequest
impl RefUnwindSafe for CreateTrafficMirrorTargetRequest
impl Send for CreateTrafficMirrorTargetRequest
impl Sync for CreateTrafficMirrorTargetRequest
impl Unpin for CreateTrafficMirrorTargetRequest
impl UnwindSafe for CreateTrafficMirrorTargetRequest
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