Show / Hide Table of Contents

Class CfnLocationHDFSPropsMixin.QopConfigurationProperty

The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC) and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS) cluster.

Inheritance
object
CfnLocationHDFSPropsMixin.QopConfigurationProperty
Implements
CfnLocationHDFSPropsMixin.IQopConfigurationProperty
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.DataSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnLocationHDFSPropsMixin.QopConfigurationProperty : CfnLocationHDFSPropsMixin.IQopConfigurationProperty
Syntax (vb)
Public Class CfnLocationHDFSPropsMixin.QopConfigurationProperty Implements CfnLocationHDFSPropsMixin.IQopConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-qopconfiguration.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.DataSync;

             var qopConfigurationProperty = new QopConfigurationProperty {
                 DataTransferProtection = "dataTransferProtection",
                 RpcProtection = "rpcProtection"
             };

Synopsis

Constructors

QopConfigurationProperty()

The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC) and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS) cluster.

Properties

DataTransferProtection

The data transfer protection setting configured on the HDFS cluster.

RpcProtection

The Remote Procedure Call (RPC) protection setting configured on the HDFS cluster.

Constructors

QopConfigurationProperty()

The Quality of Protection (QOP) configuration specifies the Remote Procedure Call (RPC) and data transfer privacy settings configured on the Hadoop Distributed File System (HDFS) cluster.

public QopConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-qopconfiguration.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.DataSync;

             var qopConfigurationProperty = new QopConfigurationProperty {
                 DataTransferProtection = "dataTransferProtection",
                 RpcProtection = "rpcProtection"
             };

Properties

DataTransferProtection

The data transfer protection setting configured on the HDFS cluster.

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

string

Remarks

This setting corresponds to your dfs.data.transfer.protection setting in the hdfs-site.xml file on your Hadoop cluster.

Default: - "PRIVACY"

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-qopconfiguration.html#cfn-datasync-locationhdfs-qopconfiguration-datatransferprotection

RpcProtection

The Remote Procedure Call (RPC) protection setting configured on the HDFS cluster.

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

string

Remarks

This setting corresponds to your hadoop.rpc.protection setting in your core-site.xml file on your Hadoop cluster.

Default: - "PRIVACY"

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-datasync-locationhdfs-qopconfiguration.html#cfn-datasync-locationhdfs-qopconfiguration-rpcprotection

Implements

CfnLocationHDFSPropsMixin.IQopConfigurationProperty
Back to top Generated by DocFX