Struct rusoto_lambda::VpcConfigResponse[][src]

pub struct VpcConfigResponse {
    pub security_group_ids: Option<Vec<String>>,
    pub subnet_ids: Option<Vec<String>>,
    pub vpc_id: Option<String>,
}

VPC configuration associated with your Lambda function.

Fields

A list of security group IDs associated with the Lambda function.

A list of subnet IDs associated with the Lambda function.

The VPC ID associated with you Lambda function.

Trait Implementations

impl Default for VpcConfigResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for VpcConfigResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for VpcConfigResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for VpcConfigResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations