Class CfnBrowserSettingsProps
Properties for defining a CfnBrowserSettings
.
Inheritance
System.Object
CfnBrowserSettingsProps
Implements
Namespace: Amazon.CDK.AwsWorkspacesweb
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnBrowserSettingsProps : Object, ICfnBrowserSettingsProps
Syntax (vb)
Public Class CfnBrowserSettingsProps
Inherits Object
Implements ICfnBrowserSettingsProps
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 cfnBrowserSettingsProps = new CfnBrowserSettingsProps {
AdditionalEncryptionContext = new Dictionary<string, string> {
{ "additionalEncryptionContextKey", "additionalEncryptionContext" }
},
BrowserPolicy = "browserPolicy",
CustomerManagedKey = "customerManagedKey",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnBrowserSettingsProps() |
Properties
AdditionalEncryptionContext | Additional encryption context of the browser settings. |
BrowserPolicy | A JSON string containing Chrome Enterprise policies that will be applied to all streaming sessions. |
CustomerManagedKey | The custom managed key of the browser settings. |
Tags | The tags to add to the browser settings resource. |
Constructors
CfnBrowserSettingsProps()
public CfnBrowserSettingsProps()
Properties
AdditionalEncryptionContext
Additional encryption context of the browser settings.
public object AdditionalEncryptionContext { get; set; }
Property Value
System.Object
Remarks
BrowserPolicy
A JSON string containing Chrome Enterprise policies that will be applied to all streaming sessions.
public string BrowserPolicy { get; set; }
Property Value
System.String
Remarks
CustomerManagedKey
The custom managed key of the browser 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-]+$
Tags
The tags to add to the browser settings resource.
public ICfnTag[] Tags { get; set; }
Property Value
ICfnTag[]