[][src]Struct rusoto_greengrass::ResourceDataContainer

pub struct ResourceDataContainer {
    pub local_device_resource_data: Option<LocalDeviceResourceData>,
    pub local_volume_resource_data: Option<LocalVolumeResourceData>,
    pub s3_machine_learning_model_resource_data: Option<S3MachineLearningModelResourceData>,
    pub sage_maker_machine_learning_model_resource_data: Option<SageMakerMachineLearningModelResourceData>,
    pub secrets_manager_secret_resource_data: Option<SecretsManagerSecretResourceData>,
}

A container for resource data. The container takes only one of the following supported resource data types: ''LocalDeviceResourceData'', ''LocalVolumeResourceData'', ''SageMakerMachineLearningModelResourceData'', ''S3MachineLearningModelResourceData'', ''SecretsManagerSecretResourceData''.

Fields

local_device_resource_data: Option<LocalDeviceResourceData>

Attributes that define the local device resource.

local_volume_resource_data: Option<LocalVolumeResourceData>

Attributes that define the local volume resource.

s3_machine_learning_model_resource_data: Option<S3MachineLearningModelResourceData>

Attributes that define an Amazon S3 machine learning resource.

sage_maker_machine_learning_model_resource_data: Option<SageMakerMachineLearningModelResourceData>

Attributes that define an Amazon SageMaker machine learning resource.

secrets_manager_secret_resource_data: Option<SecretsManagerSecretResourceData>

Attributes that define a secret resource, which references a secret from AWS Secrets Manager.

Trait Implementations

impl Clone for ResourceDataContainer[src]

impl Debug for ResourceDataContainer[src]

impl Default for ResourceDataContainer[src]

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

impl PartialEq<ResourceDataContainer> for ResourceDataContainer[src]

impl Serialize for ResourceDataContainer[src]

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