Interface CfnBrowserCustom.BrowserEnterprisePolicyProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnBrowserCustom.BrowserEnterprisePolicyProperty.Jsii$Proxy
Enclosing class:
CfnBrowserCustom

@Stability(Stable) public static interface CfnBrowserCustom.BrowserEnterprisePolicyProperty extends software.amazon.jsii.JsiiSerializable
Browser enterprise policy configuration.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.bedrockagentcore.*;
 BrowserEnterprisePolicyProperty browserEnterprisePolicyProperty = BrowserEnterprisePolicyProperty.builder()
         .location(S3LocationProperty.builder()
                 .bucket("bucket")
                 .prefix("prefix")
                 .build())
         .type("type")
         .build();
 

See Also: