Show / Hide Table of Contents

Class CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty

Details about the location of the output of the batch inference job.

Inheritance
object
CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty
Implements
CfnModelInvocationJob.IModelInvocationJobOutputDataConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Bedrock
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty : CfnModelInvocationJob.IModelInvocationJobOutputDataConfigProperty
Syntax (vb)
Public Class CfnModelInvocationJob.ModelInvocationJobOutputDataConfigProperty Implements CfnModelInvocationJob.IModelInvocationJobOutputDataConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-modelinvocationjob-modelinvocationjoboutputdataconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Bedrock;

             var modelInvocationJobOutputDataConfigProperty = new ModelInvocationJobOutputDataConfigProperty {
                 S3OutputDataConfig = new ModelInvocationJobS3OutputDataConfigProperty {
                     S3Uri = "s3Uri",

                     // the properties below are optional
                     S3BucketOwner = "s3BucketOwner",
                     S3EncryptionKeyId = "s3EncryptionKeyId"
                 }
             };

Synopsis

Constructors

ModelInvocationJobOutputDataConfigProperty()

Details about the location of the output of the batch inference job.

Properties

S3OutputDataConfig

Contains the configuration of the S3 location of the output data.

Constructors

ModelInvocationJobOutputDataConfigProperty()

Details about the location of the output of the batch inference job.

public ModelInvocationJobOutputDataConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-modelinvocationjob-modelinvocationjoboutputdataconfig.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Bedrock;

             var modelInvocationJobOutputDataConfigProperty = new ModelInvocationJobOutputDataConfigProperty {
                 S3OutputDataConfig = new ModelInvocationJobS3OutputDataConfigProperty {
                     S3Uri = "s3Uri",

                     // the properties below are optional
                     S3BucketOwner = "s3BucketOwner",
                     S3EncryptionKeyId = "s3EncryptionKeyId"
                 }
             };

Properties

S3OutputDataConfig

Contains the configuration of the S3 location of the output data.

public object S3OutputDataConfig { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-bedrock-modelinvocationjob-modelinvocationjoboutputdataconfig.html#cfn-bedrock-modelinvocationjob-modelinvocationjoboutputdataconfig-s3outputdataconfig

Type union: either IResolvable or CfnModelInvocationJob.IModelInvocationJobS3OutputDataConfigProperty

Implements

CfnModelInvocationJob.IModelInvocationJobOutputDataConfigProperty
Back to top Generated by DocFX