Class CfnIpAccessSettingsProps
Properties for defining a CfnIpAccessSettings
.
Inheritance
Implements
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnIpAccessSettingsProps : Object, ICfnIpAccessSettingsProps
Syntax (vb)
Public Class CfnIpAccessSettingsProps
Inherits Object
Implements ICfnIpAccessSettingsProps
Remarks
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_workspacesweb;
var cfnIpAccessSettingsProps = new CfnIpAccessSettingsProps {
IpRules = new [] { new IpRuleProperty {
IpRange = "ipRange",
// the properties below are optional
Description = "description"
} },
// the properties below are optional
AdditionalEncryptionContext = new Dictionary<string, string> {
{ "additionalEncryptionContextKey", "additionalEncryptionContext" }
},
CustomerManagedKey = "customerManagedKey",
Description = "description",
DisplayName = "displayName",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnIpAccessSettingsProps() |
Properties
AdditionalEncryptionContext | Additional encryption context of the IP access settings. |
CustomerManagedKey | The custom managed key of the IP access settings. |
Description | The description of the IP access settings. |
DisplayName | The display name of the IP access settings. |
IpRules | The IP rules of the IP access settings. |
Tags | The tags to add to the IP access settings resource. |
Constructors
CfnIpAccessSettingsProps()
public CfnIpAccessSettingsProps()
Properties
AdditionalEncryptionContext
Additional encryption context of the IP access settings.
public object AdditionalEncryptionContext { get; set; }
Property Value
System.Object
Remarks
CustomerManagedKey
The custom managed key of the IP access settings.
public string CustomerManagedKey { get; set; }
Property Value
System.String
Remarks
Pattern : ^arn:[\w+=/,.@-]+:kms:[a-zA-Z0-9-]*:[a-zA-Z0-9]{1,12}:key/[a-zA-Z0-9-]+$
Description
The description of the IP access settings.
public string Description { get; set; }
Property Value
System.String
Remarks
DisplayName
The display name of the IP access settings.
public string DisplayName { get; set; }
Property Value
System.String
Remarks
IpRules
The IP rules of the IP access settings.
public object IpRules { get; set; }
Property Value
System.Object
Remarks
Tags
The tags to add to the IP access settings resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]