interface CfnUploadProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DeviceFarm.CfnUploadProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdevicefarm#CfnUploadProps |
Java | software.amazon.awscdk.services.devicefarm.CfnUploadProps |
Python | aws_cdk.aws_devicefarm.CfnUploadProps |
TypeScript | aws-cdk-lib » aws_devicefarm » CfnUploadProps |
Properties for defining a CfnUpload.
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-lib';
const cfnUploadProps: devicefarm.CfnUploadProps = {
name: 'name',
projectArn: 'projectArn',
type: 'type',
// the properties below are optional
contentType: 'contentType',
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The upload's file name. |
| project | string | The ARN of the project for the upload. |
| type | string | The upload's type. |
| content | string | The upload's content type (for example, application/octet-stream). |
name
Type:
string
The upload's file name.
projectArn
Type:
string
The ARN of the project for the upload.
type
Type:
string
The upload's type.
contentType?
Type:
string
(optional)
The upload's content type (for example, application/octet-stream).

.NET
Go
Java
Python
TypeScript