Class CfnVPC.VpcEncryptionControlExclusionProperty
Describes an exclusion configuration for VPC Encryption Control.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnVPC.VpcEncryptionControlExclusionProperty : CfnVPC.IVpcEncryptionControlExclusionProperty
Syntax (vb)
Public Class CfnVPC.VpcEncryptionControlExclusionProperty Implements CfnVPC.IVpcEncryptionControlExclusionProperty
Remarks
For more information, see Enforce VPC encryption in transit in the Amazon VPC User Guide.
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.AWS.EC2;
var vpcEncryptionControlExclusionProperty = new VpcEncryptionControlExclusionProperty {
State = "state",
StateMessage = "stateMessage"
};
Synopsis
Constructors
| VpcEncryptionControlExclusionProperty() | Describes an exclusion configuration for VPC Encryption Control. |
Properties
| State | The current state of the exclusion configuration. |
| StateMessage | A message providing additional information about the exclusion state. |
Constructors
VpcEncryptionControlExclusionProperty()
Describes an exclusion configuration for VPC Encryption Control.
public VpcEncryptionControlExclusionProperty()
Remarks
For more information, see Enforce VPC encryption in transit in the Amazon VPC User Guide.
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.AWS.EC2;
var vpcEncryptionControlExclusionProperty = new VpcEncryptionControlExclusionProperty {
State = "state",
StateMessage = "stateMessage"
};
Properties
State
The current state of the exclusion configuration.
public string? State { get; set; }
Property Value
Remarks
StateMessage
A message providing additional information about the exclusion state.
public string? StateMessage { get; set; }