[−][src]Struct rusoto_rds::OptionGroup
Fields
allows_vpc_and_non_vpc_instance_memberships: Option<bool>
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.
engine_name: Option<String>
Indicates the name of the engine that this option group can be applied to.
major_engine_version: Option<String>
Indicates the major engine version associated with this option group.
option_group_arn: Option<String>
The Amazon Resource Name (ARN) for the option group.
option_group_description: Option<String>
Provides a description of the option group.
option_group_name: Option<String>
Specifies the name of the option group.
options: Option<Vec<RDSOption>>
Indicates what options are available in the option group.
vpc_id: Option<String>
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 PartialEq<OptionGroup> for OptionGroup
[src]
fn eq(&self, other: &OptionGroup) -> bool
[src]
fn ne(&self, other: &OptionGroup) -> bool
[src]
impl Default for OptionGroup
[src]
fn default() -> OptionGroup
[src]
impl Clone for OptionGroup
[src]
fn clone(&self) -> OptionGroup
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for OptionGroup
[src]
Auto Trait Implementations
impl Send for OptionGroup
impl Sync for OptionGroup
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self