[][src]Struct rusoto_ec2::CreateFlowLogsRequest

pub struct CreateFlowLogsRequest {
    pub client_token: Option<String>,
    pub deliver_logs_permission_arn: Option<String>,
    pub dry_run: Option<bool>,
    pub log_destination: Option<String>,
    pub log_destination_type: Option<String>,
    pub log_group_name: Option<String>,
    pub resource_ids: Vec<String>,
    pub resource_type: String,
    pub traffic_type: String,
}

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.

deliver_logs_permission_arn: Option<String>

The ARN for the IAM role that's used to post flow logs to a log group.

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.

log_destination: Option<String>

Specifies the destination to which the flow log data is to be published. Flow log data can be published to an CloudWatch Logs log group or an Amazon S3 bucket. The value specified for this parameter depends on the value specified for LogDestinationType.

If LogDestinationType is not specified or cloud-watch-logs, specify the Amazon Resource Name (ARN) of the CloudWatch Logs log group.

If LogDestinationType is s3, specify the ARN of the Amazon S3 bucket. You can also specify a subfolder in the bucket. To specify a subfolder in the bucket, use the following ARN format: bucket_ARN/subfolder_name/. For example, to specify a subfolder named my-logs in a bucket named my-bucket, use the following ARN: arn:aws:s3:::my-bucket/my-logs/. You cannot use AWSLogs as a subfolder name. This is a reserved term.

log_destination_type: Option<String>

Specifies the type of destination to which the flow log data is to be published. Flow log data can be published to CloudWatch Logs or Amazon S3. To publish flow log data to CloudWatch Logs, specify cloud-watch-logs. To publish flow log data to Amazon S3, specify s3.

Default: cloud-watch-logs

log_group_name: Option<String>

The name of the log group.

resource_ids: Vec<String>

One or more subnet, network interface, or VPC IDs.

Constraints: Maximum of 1000 resources

resource_type: String

The type of resource on which to create the flow log.

traffic_type: String

The type of traffic to log.

Trait Implementations

impl PartialEq<CreateFlowLogsRequest> for CreateFlowLogsRequest[src]

impl Default for CreateFlowLogsRequest[src]

impl Clone for CreateFlowLogsRequest[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreateFlowLogsRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self