interface DeviceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ECS.CfnDaemonTaskDefinitionPropsMixin.DeviceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsecs#CfnDaemonTaskDefinitionPropsMixin_DeviceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.ecs.CfnDaemonTaskDefinitionPropsMixin.DeviceProperty |
Python | aws_cdk.cfn_property_mixins.aws_ecs.CfnDaemonTaskDefinitionPropsMixin.DeviceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_ecs » CfnDaemonTaskDefinitionPropsMixin » DeviceProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_ecs as ecs } from '@aws-cdk/cfn-property-mixins';
const deviceProperty: ecs.CfnDaemonTaskDefinitionPropsMixin.DeviceProperty = {
containerPath: 'containerPath',
hostPath: 'hostPath',
permissions: ['permissions'],
};
Properties
| Name | Type | Description |
|---|---|---|
| container | string | |
| host | string | |
| permissions? | string[] |
containerPath?
Type:
string
(optional)
hostPath?
Type:
string
(optional)
permissions?
Type:
string[]
(optional)

.NET
Go
Java
Python
TypeScript