Class: Aws::LookoutEquipment::Types::InferenceOutputConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::LookoutEquipment::Types::InferenceOutputConfiguration
- Defined in:
- gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb
Overview
Note:
When making an API call, you may pass InferenceOutputConfiguration data as a hash:
{
s3_output_configuration: { # required
bucket: "S3Bucket", # required
prefix: "S3Prefix",
},
kms_key_id: "NameOrArn",
}
Specifies configuration information for the output results from for the inference, including KMS key ID and output S3 location.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
The ID number for the AWS KMS key used to encrypt the inference output.
-
#s3_output_configuration ⇒ Types::InferenceS3OutputConfiguration
Specifies configuration information for the output results from for the inference, output S3 location.
Instance Attribute Details
#kms_key_id ⇒ String
The ID number for the AWS KMS key used to encrypt the inference output.
1394 1395 1396 1397 1398 1399 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 1394 class InferenceOutputConfiguration < Struct.new( :s3_output_configuration, :kms_key_id) SENSITIVE = [] include Aws::Structure end |
#s3_output_configuration ⇒ Types::InferenceS3OutputConfiguration
Specifies configuration information for the output results from for the inference, output S3 location.
1394 1395 1396 1397 1398 1399 |
# File 'gems/aws-sdk-lookoutequipment/lib/aws-sdk-lookoutequipment/types.rb', line 1394 class InferenceOutputConfiguration < Struct.new( :s3_output_configuration, :kms_key_id) SENSITIVE = [] include Aws::Structure end |