Show / Hide Table of Contents

Class CfnComponentVersionPropsMixin.LambdaDeviceMountProperty

Contains information about a device that Linux processes in a container can access.

Inheritance
object
CfnComponentVersionPropsMixin.LambdaDeviceMountProperty
Implements
CfnComponentVersionPropsMixin.ILambdaDeviceMountProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnComponentVersionPropsMixin.LambdaDeviceMountProperty : CfnComponentVersionPropsMixin.ILambdaDeviceMountProperty
Syntax (vb)
Public Class CfnComponentVersionPropsMixin.LambdaDeviceMountProperty Implements CfnComponentVersionPropsMixin.ILambdaDeviceMountProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrassv2-componentversion-lambdadevicemount.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2;

             var lambdaDeviceMountProperty = new LambdaDeviceMountProperty {
                 AddGroupOwner = false,
                 Path = "path",
                 Permission = "permission"
             };

Synopsis

Constructors

LambdaDeviceMountProperty()

Contains information about a device that Linux processes in a container can access.

Properties

AddGroupOwner

Whether or not to add the component's system user as an owner of the device.

Path

The mount path for the device in the file system.

Permission

The permission to access the device: read/only ( ro ) or read/write ( rw ).

Constructors

LambdaDeviceMountProperty()

Contains information about a device that Linux processes in a container can access.

public LambdaDeviceMountProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrassv2-componentversion-lambdadevicemount.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.GreengrassV2;

             var lambdaDeviceMountProperty = new LambdaDeviceMountProperty {
                 AddGroupOwner = false,
                 Path = "path",
                 Permission = "permission"
             };

Properties

AddGroupOwner

Whether or not to add the component's system user as an owner of the device.

public object? AddGroupOwner { get; set; }
Property Value

object

Remarks

Default: false

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrassv2-componentversion-lambdadevicemount.html#cfn-greengrassv2-componentversion-lambdadevicemount-addgroupowner

Type union: either bool or IResolvable

Path

The mount path for the device in the file system.

public string? Path { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrassv2-componentversion-lambdadevicemount.html#cfn-greengrassv2-componentversion-lambdadevicemount-path

Permission

The permission to access the device: read/only ( ro ) or read/write ( rw ).

public string? Permission { get; set; }
Property Value

string

Remarks

Default: ro

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-greengrassv2-componentversion-lambdadevicemount.html#cfn-greengrassv2-componentversion-lambdadevicemount-permission

Implements

CfnComponentVersionPropsMixin.ILambdaDeviceMountProperty
Back to top Generated by DocFX