interface CfnUploadMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.DeviceFarm.CfnUploadMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsdevicefarm#CfnUploadMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.devicefarm.CfnUploadMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_devicefarm.CfnUploadMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_devicefarm » CfnUploadMixinProps |
Properties for CfnUploadPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-devicefarm-upload.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_devicefarm as devicefarm } from '@aws-cdk/cfn-property-mixins';
const cfnUploadMixinProps: devicefarm.CfnUploadMixinProps = {
contentType: 'contentType',
name: 'name',
projectArn: 'projectArn',
type: 'type',
};
Properties
| Name | Type | Description |
|---|---|---|
| content | string | The upload's content type (for example, application/octet-stream). |
| name? | string | The upload's file name. |
| project | string | The ARN of the project for the upload. |
| type? | string | The upload's type. |
contentType?
Type:
string
(optional)
The upload's content type (for example, application/octet-stream).
name?
Type:
string
(optional)
The upload's file name.
projectArn?
Type:
string
(optional)
The ARN of the project for the upload.
type?
Type:
string
(optional)
The upload's type.

.NET
Go
Java
Python
TypeScript