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();
 
  • Method Details

    • getGatewayArn

      @Stability(Stable) @NotNull String getGatewayArn()
      The ARN of the gateway.
    • getGatewayId

      @Stability(Stable) @NotNull String getGatewayId()
      The ID of the gateway.
    • getGatewayName

      @Stability(Stable) @NotNull String getGatewayName()
      The name of the gateway.
    • getRole

      @Stability(Stable) @NotNull IRole getRole()
      The IAM role that provides permissions for the gateway.
    • builder

      @Stability(Stable) static GatewayAttributes.Builder builder()
      Returns:
      a GatewayAttributes.Builder of GatewayAttributes