Class InputDataConfig
- java.lang.Object
-
- software.amazon.awssdk.services.transcribe.model.InputDataConfig
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<InputDataConfig.Builder,InputDataConfig>
@Generated("software.amazon.awssdk:codegen") public final class InputDataConfig extends Object implements SdkPojo, Serializable, ToCopyableBuilder<InputDataConfig.Builder,InputDataConfig>
Contains the Amazon S3 location of the training data you want to use to create a new custom language model, and permissions to access this location.
When using
InputDataConfig, you must include these sub-parameters:S3UriandDataAccessRoleArn. You can optionally includeTuningDataS3Uri.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceInputDataConfig.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static InputDataConfig.Builderbuilder()StringdataAccessRoleArn()The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()Strings3Uri()The Amazon S3 location (URI) of the text files you want to use to train your custom language model.List<SdkField<?>>sdkFields()static Class<? extends InputDataConfig.Builder>serializableBuilderClass()InputDataConfig.BuildertoBuilder()StringtoString()Returns a string representation of this object.StringtuningDataS3Uri()The Amazon S3 location (URI) of the text files you want to use to tune your custom language model.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
s3Uri
public final String s3Uri()
The Amazon S3 location (URI) of the text files you want to use to train your custom language model.
Here's an example URI path:
s3://DOC-EXAMPLE-BUCKET/my-model-training-data/- Returns:
- The Amazon S3 location (URI) of the text files you want to use to train your custom language model.
Here's an example URI path:
s3://DOC-EXAMPLE-BUCKET/my-model-training-data/
-
tuningDataS3Uri
public final String tuningDataS3Uri()
The Amazon S3 location (URI) of the text files you want to use to tune your custom language model.
Here's an example URI path:
s3://DOC-EXAMPLE-BUCKET/my-model-tuning-data/- Returns:
- The Amazon S3 location (URI) of the text files you want to use to tune your custom language model.
Here's an example URI path:
s3://DOC-EXAMPLE-BUCKET/my-model-tuning-data/
-
dataAccessRoleArn
public final String dataAccessRoleArn()
The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that contains your input files. If the role that you specify doesn’t have the appropriate permissions to access the specified Amazon S3 location, your request fails.
IAM role ARNs have the format
arn:partition:iam::account:role/role-name-with-path. For example:arn:aws:iam::111122223333:role/Admin.For more information, see IAM ARNs.
- Returns:
- The Amazon Resource Name (ARN) of an IAM role that has permissions to access the Amazon S3 bucket that
contains your input files. If the role that you specify doesn’t have the appropriate permissions to
access the specified Amazon S3 location, your request fails.
IAM role ARNs have the format
arn:partition:iam::account:role/role-name-with-path. For example:arn:aws:iam::111122223333:role/Admin.For more information, see IAM ARNs.
-
toBuilder
public InputDataConfig.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<InputDataConfig.Builder,InputDataConfig>
-
builder
public static InputDataConfig.Builder builder()
-
serializableBuilderClass
public static Class<? extends InputDataConfig.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-