[][src]Struct rusoto_sagemaker::RenderUiTemplateRequest

pub struct RenderUiTemplateRequest {
    pub human_task_ui_arn: Option<String>,
    pub role_arn: String,
    pub task: RenderableTask,
    pub ui_template: Option<UiTemplate>,
}

Fields

human_task_ui_arn: Option<String>

The HumanTaskUiArn of the worker UI that you want to render. Do not provide a HumanTaskUiArn if you use the UiTemplate parameter.

See a list of available Human Ui Amazon Resource Names (ARNs) in UiConfig.

role_arn: String

The Amazon Resource Name (ARN) that has access to the S3 objects that are used by the template.

task: RenderableTask

A RenderableTask object containing a representative task to render.

ui_template: Option<UiTemplate>

A Template object containing the worker UI template to render.

Trait Implementations

impl Clone for RenderUiTemplateRequest[src]

impl Debug for RenderUiTemplateRequest[src]

impl Default for RenderUiTemplateRequest[src]

impl PartialEq<RenderUiTemplateRequest> for RenderUiTemplateRequest[src]

impl Serialize for RenderUiTemplateRequest[src]

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