public static interface CreateModelRequest.Builder extends LookoutEquipmentRequest.Builder, SdkPojo, CopyableBuilder<CreateModelRequest.Builder,CreateModelRequest>
| Modifier and Type | Method and Description |
|---|---|
CreateModelRequest.Builder |
clientToken(String clientToken)
A unique identifier for the request.
|
default CreateModelRequest.Builder |
dataPreProcessingConfiguration(Consumer<DataPreProcessingConfiguration.Builder> dataPreProcessingConfiguration)
The configuration is the
TargetSamplingRate, which is the sampling rate of the data after post
processing by Amazon Lookout for Equipment. |
CreateModelRequest.Builder |
dataPreProcessingConfiguration(DataPreProcessingConfiguration dataPreProcessingConfiguration)
The configuration is the
TargetSamplingRate, which is the sampling rate of the data after post
processing by Amazon Lookout for Equipment. |
CreateModelRequest.Builder |
datasetName(String datasetName)
The name of the dataset for the ML model being created.
|
default CreateModelRequest.Builder |
datasetSchema(Consumer<DatasetSchema.Builder> datasetSchema)
The data schema for the ML model being created.
|
CreateModelRequest.Builder |
datasetSchema(DatasetSchema datasetSchema)
The data schema for the ML model being created.
|
CreateModelRequest.Builder |
evaluationDataEndTime(Instant evaluationDataEndTime)
Indicates the time reference in the dataset that should be used to end the subset of evaluation data for the
ML model.
|
CreateModelRequest.Builder |
evaluationDataStartTime(Instant evaluationDataStartTime)
Indicates the time reference in the dataset that should be used to begin the subset of evaluation data for
the ML model.
|
default CreateModelRequest.Builder |
labelsInputConfiguration(Consumer<LabelsInputConfiguration.Builder> labelsInputConfiguration)
The input configuration for the labels being used for the ML model that's being created.
|
CreateModelRequest.Builder |
labelsInputConfiguration(LabelsInputConfiguration labelsInputConfiguration)
The input configuration for the labels being used for the ML model that's being created.
|
CreateModelRequest.Builder |
modelName(String modelName)
The name for the ML model to be created.
|
CreateModelRequest.Builder |
offCondition(String offCondition)
Indicates that the asset associated with this sensor has been shut off.
|
CreateModelRequest.Builder |
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration) |
CreateModelRequest.Builder |
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer) |
CreateModelRequest.Builder |
roleArn(String roleArn)
The Amazon Resource Name (ARN) of a role with permission to access the data source being used to create the
ML model.
|
CreateModelRequest.Builder |
serverSideKmsKeyId(String serverSideKmsKeyId)
Provides the identifier of the KMS key used to encrypt model data by Amazon Lookout for Equipment.
|
CreateModelRequest.Builder |
tags(Collection<Tag> tags)
Any tags associated with the ML model being created.
|
CreateModelRequest.Builder |
tags(Consumer<Tag.Builder>... tags)
Any tags associated with the ML model being created.
|
CreateModelRequest.Builder |
tags(Tag... tags)
Any tags associated with the ML model being created.
|
CreateModelRequest.Builder |
trainingDataEndTime(Instant trainingDataEndTime)
Indicates the time reference in the dataset that should be used to end the subset of training data for the ML
model.
|
CreateModelRequest.Builder |
trainingDataStartTime(Instant trainingDataStartTime)
Indicates the time reference in the dataset that should be used to begin the subset of training data for the
ML model.
|
buildoverrideConfigurationequalsBySdkFields, sdkFieldscopyapplyMutation, buildCreateModelRequest.Builder modelName(String modelName)
The name for the ML model to be created.
modelName - The name for the ML model to be created.CreateModelRequest.Builder datasetName(String datasetName)
The name of the dataset for the ML model being created.
datasetName - The name of the dataset for the ML model being created.CreateModelRequest.Builder datasetSchema(DatasetSchema datasetSchema)
The data schema for the ML model being created.
datasetSchema - The data schema for the ML model being created.default CreateModelRequest.Builder datasetSchema(Consumer<DatasetSchema.Builder> datasetSchema)
The data schema for the ML model being created.
This is a convenience method that creates an instance of theDatasetSchema.Builder avoiding the need
to create one manually via DatasetSchema.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its
result is passed to datasetSchema(DatasetSchema).
datasetSchema - a consumer that will call methods on DatasetSchema.BuilderdatasetSchema(DatasetSchema)CreateModelRequest.Builder labelsInputConfiguration(LabelsInputConfiguration labelsInputConfiguration)
The input configuration for the labels being used for the ML model that's being created.
labelsInputConfiguration - The input configuration for the labels being used for the ML model that's being created.default CreateModelRequest.Builder labelsInputConfiguration(Consumer<LabelsInputConfiguration.Builder> labelsInputConfiguration)
The input configuration for the labels being used for the ML model that's being created.
This is a convenience method that creates an instance of theLabelsInputConfiguration.Builder
avoiding the need to create one manually via LabelsInputConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called immediately
and its result is passed to labelsInputConfiguration(LabelsInputConfiguration).
labelsInputConfiguration - a consumer that will call methods on LabelsInputConfiguration.BuilderlabelsInputConfiguration(LabelsInputConfiguration)CreateModelRequest.Builder clientToken(String clientToken)
A unique identifier for the request. If you do not set the client request token, Amazon Lookout for Equipment generates one.
clientToken - A unique identifier for the request. If you do not set the client request token, Amazon Lookout for
Equipment generates one.CreateModelRequest.Builder trainingDataStartTime(Instant trainingDataStartTime)
Indicates the time reference in the dataset that should be used to begin the subset of training data for the ML model.
trainingDataStartTime - Indicates the time reference in the dataset that should be used to begin the subset of training data
for the ML model.CreateModelRequest.Builder trainingDataEndTime(Instant trainingDataEndTime)
Indicates the time reference in the dataset that should be used to end the subset of training data for the ML model.
trainingDataEndTime - Indicates the time reference in the dataset that should be used to end the subset of training data for
the ML model.CreateModelRequest.Builder evaluationDataStartTime(Instant evaluationDataStartTime)
Indicates the time reference in the dataset that should be used to begin the subset of evaluation data for the ML model.
evaluationDataStartTime - Indicates the time reference in the dataset that should be used to begin the subset of evaluation data
for the ML model.CreateModelRequest.Builder evaluationDataEndTime(Instant evaluationDataEndTime)
Indicates the time reference in the dataset that should be used to end the subset of evaluation data for the ML model.
evaluationDataEndTime - Indicates the time reference in the dataset that should be used to end the subset of evaluation data
for the ML model.CreateModelRequest.Builder roleArn(String roleArn)
The Amazon Resource Name (ARN) of a role with permission to access the data source being used to create the ML model.
roleArn - The Amazon Resource Name (ARN) of a role with permission to access the data source being used to
create the ML model.CreateModelRequest.Builder dataPreProcessingConfiguration(DataPreProcessingConfiguration dataPreProcessingConfiguration)
The configuration is the TargetSamplingRate, which is the sampling rate of the data after post
processing by Amazon Lookout for Equipment. For example, if you provide data that has been collected at a 1
second level and you want the system to resample the data at a 1 minute rate before training, the
TargetSamplingRate is 1 minute.
When providing a value for the TargetSamplingRate, you must attach the prefix "PT" to the rate
you want. The value for a 1 second rate is therefore PT1S, the value for a 15 minute rate is
PT15M, and the value for a 1 hour rate is PT1H
dataPreProcessingConfiguration - The configuration is the TargetSamplingRate, which is the sampling rate of the data after
post processing by Amazon Lookout for Equipment. For example, if you provide data that has been
collected at a 1 second level and you want the system to resample the data at a 1 minute rate before
training, the TargetSamplingRate is 1 minute.
When providing a value for the TargetSamplingRate, you must attach the prefix "PT" to the
rate you want. The value for a 1 second rate is therefore PT1S, the value for a 15 minute rate
is PT15M, and the value for a 1 hour rate is PT1H
default CreateModelRequest.Builder dataPreProcessingConfiguration(Consumer<DataPreProcessingConfiguration.Builder> dataPreProcessingConfiguration)
The configuration is the TargetSamplingRate, which is the sampling rate of the data after post
processing by Amazon Lookout for Equipment. For example, if you provide data that has been collected at a 1
second level and you want the system to resample the data at a 1 minute rate before training, the
TargetSamplingRate is 1 minute.
When providing a value for the TargetSamplingRate, you must attach the prefix "PT" to the rate
you want. The value for a 1 second rate is therefore PT1S, the value for a 15 minute rate is
PT15M, and the value for a 1 hour rate is PT1H
DataPreProcessingConfiguration.Builder
avoiding the need to create one manually via DataPreProcessingConfiguration.builder().
When the Consumer completes, SdkBuilder.build() is called
immediately and its result is passed to
dataPreProcessingConfiguration(DataPreProcessingConfiguration).
dataPreProcessingConfiguration - a consumer that will call methods on DataPreProcessingConfiguration.BuilderdataPreProcessingConfiguration(DataPreProcessingConfiguration)CreateModelRequest.Builder serverSideKmsKeyId(String serverSideKmsKeyId)
Provides the identifier of the KMS key used to encrypt model data by Amazon Lookout for Equipment.
serverSideKmsKeyId - Provides the identifier of the KMS key used to encrypt model data by Amazon Lookout for Equipment.CreateModelRequest.Builder tags(Collection<Tag> tags)
Any tags associated with the ML model being created.
tags - Any tags associated with the ML model being created.CreateModelRequest.Builder tags(Tag... tags)
Any tags associated with the ML model being created.
tags - Any tags associated with the ML model being created.CreateModelRequest.Builder tags(Consumer<Tag.Builder>... tags)
Any tags associated with the ML model being created.
This is a convenience method that creates an instance of theTag.Builder avoiding the need to create one
manually via Tag.builder().
When the Consumer completes,
SdkBuilder.build() is called immediately and
its result is passed to #tags(List.
tags - a consumer that will call methods on
Tag.Builder#tags(java.util.Collection) CreateModelRequest.Builder offCondition(String offCondition)
Indicates that the asset associated with this sensor has been shut off. As long as this condition is met, Lookout for Equipment will not use data from this asset for training, evaluation, or inference.
offCondition - Indicates that the asset associated with this sensor has been shut off. As long as this condition is
met, Lookout for Equipment will not use data from this asset for training, evaluation, or inference.CreateModelRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
overrideConfiguration in interface AwsRequest.BuilderCreateModelRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
overrideConfiguration in interface AwsRequest.BuilderCopyright © 2022. All rights reserved.