Interface CfnBrowserCustomProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnBrowserCustomProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.113.0 (build fc68b25)",
date="2025-09-25T11:29:02.621Z")
@Stability(Stable)
public interface CfnBrowserCustomProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnBrowserCustom
.
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.*; CfnBrowserCustomProps cfnBrowserCustomProps = CfnBrowserCustomProps.builder() .name("name") .networkConfiguration(BrowserNetworkConfigurationProperty.builder() .networkMode("networkMode") .build()) // the properties below are optional .description("description") .executionRoleArn("executionRoleArn") .recordingConfig(RecordingConfigProperty.builder() .enabled(false) .s3Location(S3LocationProperty.builder() .bucket("bucket") .prefix("prefix") .build()) .build()) .tags(Map.of( "tagsKey", "tags")) .build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnBrowserCustomProps
static final class
An implementation forCfnBrowserCustomProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the browser.default String
The Amazon Resource Name (ARN) of the IAM role.getName()
The name of the browser.Network configuration for browser.default Object
Recording configuration for browser.getTags()
A map of tag keys and values.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the browser.- See Also:
-
getNetworkConfiguration
Network configuration for browser.- See Also:
-
getDescription
The description of the browser.- See Also:
-
getExecutionRoleArn
The Amazon Resource Name (ARN) of the IAM role.- See Also:
-
getRecordingConfig
Recording configuration for browser.- See Also:
-
getTags
A map of tag keys and values.- See Also:
-
builder
- Returns:
- a
CfnBrowserCustomProps.Builder
ofCfnBrowserCustomProps
-