[][src]Struct rusoto_forecast::SupplementaryFeature

pub struct SupplementaryFeature {
    pub name: String,
    pub value: String,
}

Describes a supplementary feature of a dataset group. This object is part of the InputDataConfig object.

The only supported feature is a holiday calendar. If you use the calendar, all data in the datasets should belong to the same country as the calendar. For the holiday calendar data, see the Jollyday web site.

India and Korea's holidays are not included in the Jollyday library, but both are supported by Amazon Forecast. Their holidays are:

"IN" - INDIA

  • JANUARY 26 - REPUBLIC DAY

  • AUGUST 15 - INDEPENDENCE DAY

  • OCTOBER 2 GANDHI'S BIRTHDAY

"KR" - KOREA

  • JANUARY 1 - NEW YEAR

  • MARCH 1 - INDEPENDENCE MOVEMENT DAY

  • MAY 5 - CHILDREN'S DAY

  • JUNE 6 - MEMORIAL DAY

  • AUGUST 15 - LIBERATION DAY

  • OCTOBER 3 - NATIONAL FOUNDATION DAY

  • OCTOBER 9 - HANGEUL DAY

  • DECEMBER 25 - CHRISTMAS DAY

Fields

name: String

The name of the feature. This must be "holiday".

value: String

One of the following 2 letter country codes:

  • "AR" - ARGENTINA

  • "AT" - AUSTRIA

  • "AU" - AUSTRALIA

  • "BE" - BELGIUM

  • "BR" - BRAZIL

  • "CA" - CANADA

  • "CN" - CHINA

  • "CZ" - CZECH REPUBLIC

  • "DK" - DENMARK

  • "EC" - ECUADOR

  • "FI" - FINLAND

  • "FR" - FRANCE

  • "DE" - GERMANY

  • "HU" - HUNGARY

  • "IE" - IRELAND

  • "IN" - INDIA

  • "IT" - ITALY

  • "JP" - JAPAN

  • "KR" - KOREA

  • "LU" - LUXEMBOURG

  • "MX" - MEXICO

  • "NL" - NETHERLANDS

  • "NO" - NORWAY

  • "PL" - POLAND

  • "PT" - PORTUGAL

  • "RU" - RUSSIA

  • "ZA" - SOUTH AFRICA

  • "ES" - SPAIN

  • "SE" - SWEDEN

  • "CH" - SWITZERLAND

  • "US" - UNITED STATES

  • "UK" - UNITED KINGDOM

Trait Implementations

impl Clone for SupplementaryFeature[src]

impl Debug for SupplementaryFeature[src]

impl Default for SupplementaryFeature[src]

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

impl PartialEq<SupplementaryFeature> for SupplementaryFeature[src]

impl Serialize for SupplementaryFeature[src]

impl StructuralPartialEq for SupplementaryFeature[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.