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]

[src]

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

impl Debug for VpcConfigResponse
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for VpcConfigResponse
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations