Interface AwsApiProps

All Superinterfaces:
AwsApiInput, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
AwsApiProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:47.710Z") @Stability(Stable) public interface AwsApiProps extends software.amazon.jsii.JsiiSerializable, AwsApiInput
Properties for an AwsApi target.

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.events.targets.*;
 import software.amazon.awscdk.services.iam.*;
 Object parameters;
 PolicyStatement policyStatement;
 AwsApiProps awsApiProps = AwsApiProps.builder()
         .action("action")
         .service("service")
         // the properties below are optional
         .apiVersion("apiVersion")
         .catchErrorPattern("catchErrorPattern")
         .parameters(parameters)
         .policyStatement(policyStatement)
         .build();
 
  • Method Details

    • getPolicyStatement

      @Stability(Stable) @Nullable default PolicyStatement getPolicyStatement()
      The IAM policy statement to allow the API call.

      Use only if resource restriction is needed.

      Default: - extract the permission from the API call

    • builder

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