[][src]Struct rusoto_migrationhub_config::HomeRegionControl

pub struct HomeRegionControl {
    pub control_id: Option<String>,
    pub home_region: Option<String>,
    pub requested_time: Option<f64>,
    pub target: Option<Target>,
}

A home region control is an object that specifies the home region for an account, with some additional information. It contains a target (always of type ACCOUNT), an ID, and a time at which the home region was set.

Fields

control_id: Option<String>

A unique identifier that's generated for each home region control. It's always a string that begins with "hrc-" followed by 12 lowercase letters and numbers.

home_region: Option<String>

The AWS Region that's been set as home region. For example, "us-west-2" or "eu-central-1" are valid home regions.

requested_time: Option<f64>

A timestamp representing the time when the customer called CreateHomeregionControl and set the home region for the account.

target: Option<Target>

The target parameter specifies the identifier to which the home region is applied, which is always an ACCOUNT. It applies the home region to the current ACCOUNT.

Trait Implementations

impl Clone for HomeRegionControl[src]

impl Debug for HomeRegionControl[src]

impl Default for HomeRegionControl[src]

impl<'de> Deserialize<'de> for HomeRegionControl[src]

impl PartialEq<HomeRegionControl> for HomeRegionControl[src]

impl StructuralPartialEq for HomeRegionControl[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.