Interface CfnEndpointAuthorizationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEndpointAuthorizationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:42.799Z") @Stability(Stable) public interface CfnEndpointAuthorizationProps extends software.amazon.jsii.JsiiSerializable
Properties for defining a CfnEndpointAuthorization.

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.redshift.*;
 CfnEndpointAuthorizationProps cfnEndpointAuthorizationProps = CfnEndpointAuthorizationProps.builder()
         .account("account")
         .clusterIdentifier("clusterIdentifier")
         // the properties below are optional
         .force(false)
         .vpcIds(List.of("vpcIds"))
         .build();
 
  • Method Details

    • getAccount

      @Stability(Stable) @NotNull String getAccount()
      The AWS account ID of either the cluster owner (grantor) or grantee.

      If Grantee parameter is true, then the Account value is of the grantor.

    • getClusterIdentifier

      @Stability(Stable) @NotNull String getClusterIdentifier()
      The cluster identifier.
    • getForce

      @Stability(Stable) @Nullable default Object getForce()
      Indicates whether to force the revoke action.

      If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.

    • getVpcIds

      @Stability(Stable) @Nullable default List<String> getVpcIds()
      The virtual private cloud (VPC) identifiers to grant access to.
    • builder

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