com.pulumi.aws.transcribe.inputs.LanguageModelInputDataConfigArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws Show documentation
Show all versions of aws Show documentation
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
The newest version!
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.aws.transcribe.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class LanguageModelInputDataConfigArgs extends com.pulumi.resources.ResourceArgs {
public static final LanguageModelInputDataConfigArgs Empty = new LanguageModelInputDataConfigArgs();
/**
* IAM role with access to S3 bucket.
*
*/
@Import(name="dataAccessRoleArn", required=true)
private Output dataAccessRoleArn;
/**
* @return IAM role with access to S3 bucket.
*
*/
public Output dataAccessRoleArn() {
return this.dataAccessRoleArn;
}
/**
* S3 URI where training data is located.
*
*/
@Import(name="s3Uri", required=true)
private Output s3Uri;
/**
* @return S3 URI where training data is located.
*
*/
public Output s3Uri() {
return this.s3Uri;
}
/**
* S3 URI where tuning data is located.
*
* The following arguments are optional:
*
*/
@Import(name="tuningDataS3Uri")
private @Nullable Output tuningDataS3Uri;
/**
* @return S3 URI where tuning data is located.
*
* The following arguments are optional:
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy