interface DataOutputConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.LookoutEquipment.Mixins.CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awslookoutequipment/mixins#CfnInferenceSchedulerPropsMixin_DataOutputConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.lookoutequipment.mixins.CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_lookoutequipment.mixins.CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_lookoutequipment » mixins » CfnInferenceSchedulerPropsMixin » DataOutputConfigurationProperty |
Specifies configuration information for the output results for the inference scheduler, including the S3 location for the output.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as lookoutequipment_mixins } from '@aws-cdk/mixins-preview/aws-lookoutequipment';
const dataOutputConfigurationProperty: lookoutequipment_mixins.CfnInferenceSchedulerPropsMixin.DataOutputConfigurationProperty = {
kmsKeyId: 'kmsKeyId',
s3OutputConfiguration: {
bucket: 'bucket',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| kms | string | The ID number for the AWS KMS key used to encrypt the inference output. |
| s3 | IResolvable | S3 | Specifies configuration information for the output results from the inference, including output S3 location. |
kmsKeyId?
Type:
string
(optional)
The ID number for the AWS KMS key used to encrypt the inference output.
s3OutputConfiguration?
Type:
IResolvable | S3
(optional)
Specifies configuration information for the output results from the inference, including output S3 location.

.NET
Go
Java
Python
TypeScript