Interface GatewayAttributes
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
GatewayAttributes.Jsii$Proxy
@Generated(value="jsii-pacmak/1.129.0 (build eaca441)",
date="2026-05-19T08:18:44.406Z")
@Stability(Stable)
public interface GatewayAttributes
extends software.amazon.jsii.JsiiSerializable
Attributes for importing an existing Gateway.
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.*;
import software.amazon.awscdk.services.iam.*;
Role role;
GatewayAttributes gatewayAttributes = GatewayAttributes.builder()
.gatewayArn("gatewayArn")
.gatewayId("gatewayId")
.gatewayName("gatewayName")
.role(role)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forGatewayAttributesstatic final classAn implementation forGatewayAttributes -
Method Summary
Modifier and TypeMethodDescriptionstatic GatewayAttributes.Builderbuilder()The ARN of the gateway.The ID of the gateway.The name of the gateway.getRole()The IAM role that provides permissions for the gateway.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGatewayArn
The ARN of the gateway. -
getGatewayId
The ID of the gateway. -
getGatewayName
The name of the gateway. -
getRole
The IAM role that provides permissions for the gateway. -
builder
- Returns:
- a
GatewayAttributes.BuilderofGatewayAttributes
-