Struct aws_sdk_datapipeline::input::ReportTaskRunnerHeartbeatInput [−][src]
#[non_exhaustive]pub struct ReportTaskRunnerHeartbeatInput {
pub taskrunner_id: Option<String>,
pub worker_group: Option<String>,
pub hostname: Option<String>,
}
Expand description
Contains the parameters for ReportTaskRunnerHeartbeat.
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.taskrunner_id: Option<String>
The ID of the task runner. This value should be unique across your AWS account. In the case of AWS Data Pipeline Task Runner launched on a resource managed by AWS Data Pipeline, the web service provides a unique identifier when it launches the application. If you have written a custom task runner, you should assign a unique identifier for the task runner.
worker_group: Option<String>
The type of task the task runner is configured to accept and process. The worker group is set as a field on objects in the pipeline when they are created.
You can only specify a single value for workerGroup
. There are no wildcard values permitted in workerGroup
; the string
must be an exact, case-sensitive, match.
hostname: Option<String>
The public DNS name of the task runner.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReportTaskRunnerHeartbeat, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<ReportTaskRunnerHeartbeat, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<ReportTaskRunnerHeartbeat
>
Creates a new builder-style object to manufacture ReportTaskRunnerHeartbeatInput
The ID of the task runner. This value should be unique across your AWS account. In the case of AWS Data Pipeline Task Runner launched on a resource managed by AWS Data Pipeline, the web service provides a unique identifier when it launches the application. If you have written a custom task runner, you should assign a unique identifier for the task runner.
The type of task the task runner is configured to accept and process. The worker group is set as a field on objects in the pipeline when they are created.
You can only specify a single value for workerGroup
. There are no wildcard values permitted in workerGroup
; the string
must be an exact, case-sensitive, match.
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 Send for ReportTaskRunnerHeartbeatInput
impl Sync for ReportTaskRunnerHeartbeatInput
impl Unpin for ReportTaskRunnerHeartbeatInput
impl UnwindSafe for ReportTaskRunnerHeartbeatInput
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