Struct rusoto_rds::OptionGroup[][src]

pub struct OptionGroup {
    pub allows_vpc_and_non_vpc_instance_memberships: Option<bool>,
    pub engine_name: Option<String>,
    pub major_engine_version: Option<String>,
    pub option_group_arn: Option<String>,
    pub option_group_description: Option<String>,
    pub option_group_name: Option<String>,
    pub options: Option<Vec<RDSOption>>,
    pub vpc_id: Option<String>,
}

Fields

Indicates whether this option group can be applied to both VPC and non-VPC instances. The value true indicates the option group can be applied to both VPC and non-VPC instances.

Indicates the name of the engine that this option group can be applied to.

Indicates the major engine version associated with this option group.

The Amazon Resource Name (ARN) for the option group.

Provides a description of the option group.

Specifies the name of the option group.

Indicates what options are available in the option group.

If AllowsVpcAndNonVpcInstanceMemberships is false, this field is blank. If AllowsVpcAndNonVpcInstanceMemberships is true and this field is blank, then this option group can be applied to both VPC and non-VPC instances. If this field contains a value, then this option group can only be applied to instances that are in the VPC indicated by this field.

Trait Implementations

impl Default for OptionGroup
[src]

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

impl Debug for OptionGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for OptionGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for OptionGroup
[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

impl Send for OptionGroup

impl Sync for OptionGroup