Struct aws_sdk_sagemaker::input::CreateActionInput [−][src]
#[non_exhaustive]pub struct CreateActionInput {
pub action_name: Option<String>,
pub source: Option<ActionSource>,
pub action_type: Option<String>,
pub description: Option<String>,
pub status: Option<ActionStatus>,
pub properties: Option<HashMap<String, String>>,
pub metadata_properties: Option<MetadataProperties>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.action_name: Option<String>
The name of the action. Must be unique to your account in an Amazon Web Services Region.
source: Option<ActionSource>
The source type, ID, and URI.
action_type: Option<String>
The action type.
description: Option<String>
The description of the action.
status: Option<ActionStatus>
The status of the action.
properties: Option<HashMap<String, String>>
A list of properties to add to the action.
metadata_properties: Option<MetadataProperties>
Metadata properties of the tracking entity, trial, or trial component.
A list of tags to apply to the action.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateAction, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateAction, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateAction
>
Creates a new builder-style object to manufacture CreateActionInput
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateActionInput
impl Send for CreateActionInput
impl Sync for CreateActionInput
impl Unpin for CreateActionInput
impl UnwindSafe for CreateActionInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more