Interface MonitoringAppSpecification.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<MonitoringAppSpecification.Builder,MonitoringAppSpecification>,SdkBuilder<MonitoringAppSpecification.Builder,MonitoringAppSpecification>,SdkPojo
- Enclosing class:
- MonitoringAppSpecification
public static interface MonitoringAppSpecification.Builder extends SdkPojo, CopyableBuilder<MonitoringAppSpecification.Builder,MonitoringAppSpecification>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MonitoringAppSpecification.BuildercontainerArguments(String... containerArguments)An array of arguments for the container used to run the monitoring job.MonitoringAppSpecification.BuildercontainerArguments(Collection<String> containerArguments)An array of arguments for the container used to run the monitoring job.MonitoringAppSpecification.BuildercontainerEntrypoint(String... containerEntrypoint)Specifies the entrypoint for a container used to run the monitoring job.MonitoringAppSpecification.BuildercontainerEntrypoint(Collection<String> containerEntrypoint)Specifies the entrypoint for a container used to run the monitoring job.MonitoringAppSpecification.BuilderimageUri(String imageUri)The container image to be run by the monitoring job.MonitoringAppSpecification.BuilderpostAnalyticsProcessorSourceUri(String postAnalyticsProcessorSourceUri)An Amazon S3 URI to a script that is called after analysis has been performed.MonitoringAppSpecification.BuilderrecordPreprocessorSourceUri(String recordPreprocessorSourceUri)An Amazon S3 URI to a script that is called per row prior to running analysis.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
imageUri
MonitoringAppSpecification.Builder imageUri(String imageUri)
The container image to be run by the monitoring job.
- Parameters:
imageUri- The container image to be run by the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
MonitoringAppSpecification.Builder containerEntrypoint(Collection<String> containerEntrypoint)
Specifies the entrypoint for a container used to run the monitoring job.
- Parameters:
containerEntrypoint- Specifies the entrypoint for a container used to run the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerEntrypoint
MonitoringAppSpecification.Builder containerEntrypoint(String... containerEntrypoint)
Specifies the entrypoint for a container used to run the monitoring job.
- Parameters:
containerEntrypoint- Specifies the entrypoint for a container used to run the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
MonitoringAppSpecification.Builder containerArguments(Collection<String> containerArguments)
An array of arguments for the container used to run the monitoring job.
- Parameters:
containerArguments- An array of arguments for the container used to run the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
containerArguments
MonitoringAppSpecification.Builder containerArguments(String... containerArguments)
An array of arguments for the container used to run the monitoring job.
- Parameters:
containerArguments- An array of arguments for the container used to run the monitoring job.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
recordPreprocessorSourceUri
MonitoringAppSpecification.Builder recordPreprocessorSourceUri(String recordPreprocessorSourceUri)
An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.
- Parameters:
recordPreprocessorSourceUri- An Amazon S3 URI to a script that is called per row prior to running analysis. It can base64 decode the payload and convert it into a flattened JSON so that the built-in container can use the converted data. Applicable only for the built-in (first party) containers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
postAnalyticsProcessorSourceUri
MonitoringAppSpecification.Builder postAnalyticsProcessorSourceUri(String postAnalyticsProcessorSourceUri)
An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.
- Parameters:
postAnalyticsProcessorSourceUri- An Amazon S3 URI to a script that is called after analysis has been performed. Applicable only for the built-in (first party) containers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-