Class CfnEndpointAuthorization

java.lang.Object
software.amazon.jsii.JsiiObject
software.constructs.Construct
software.amazon.awscdk.CfnElement
software.amazon.awscdk.CfnRefElement
software.amazon.awscdk.CfnResource
software.amazon.awscdk.services.redshift.CfnEndpointAuthorization
All Implemented Interfaces:
IInspectable, software.amazon.jsii.JsiiSerializable, software.constructs.IConstruct, software.constructs.IDependable

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-09-11T18:01:22.580Z") @Stability(Stable) public class CfnEndpointAuthorization extends CfnResource implements IInspectable
Describes an endpoint authorization for authorizing Redshift-managed VPC endpoint access to a cluster across AWS accounts .

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.*;
 CfnEndpointAuthorization cfnEndpointAuthorization = CfnEndpointAuthorization.Builder.create(this, "MyCfnEndpointAuthorization")
         .account("account")
         .clusterIdentifier("clusterIdentifier")
         // the properties below are optional
         .force(false)
         .vpcIds(List.of("vpcIds"))
         .build();
 

See Also:
  • Field Details

    • CFN_RESOURCE_TYPE_NAME

      @Stability(Stable) public static final String CFN_RESOURCE_TYPE_NAME
      The CloudFormation resource type name for this resource class.
  • Constructor Details

    • CfnEndpointAuthorization

      protected CfnEndpointAuthorization(software.amazon.jsii.JsiiObjectRef objRef)
    • CfnEndpointAuthorization

      protected CfnEndpointAuthorization(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • CfnEndpointAuthorization

      @Stability(Stable) public CfnEndpointAuthorization(@NotNull software.constructs.Construct scope, @NotNull String id, @NotNull CfnEndpointAuthorizationProps props)
      Parameters:
      scope - Scope in which this resource is defined. This parameter is required.
      id - Construct identifier for this resource (unique in its scope). This parameter is required.
      props - Resource properties. This parameter is required.
  • Method Details

    • inspect

      @Stability(Stable) public void inspect(@NotNull TreeInspector inspector)
      Examines the CloudFormation resource and discloses attributes.

      Specified by:
      inspect in interface IInspectable
      Parameters:
      inspector - tree inspector to collect and process attributes. This parameter is required.
    • renderProperties

      @Stability(Stable) @NotNull protected Map<String,Object> renderProperties(@NotNull Map<String,Object> props)
      Overrides:
      renderProperties in class CfnResource
      Parameters:
      props - This parameter is required.
    • getAttrAllowedAllVpCs

      @Stability(Stable) @NotNull public IResolvable getAttrAllowedAllVpCs()
      Indicates whether all VPCs in the grantee account are allowed access to the cluster.
    • getAttrAllowedVpCs

      @Stability(Stable) @NotNull public List<String> getAttrAllowedVpCs()
      The VPCs allowed access to the cluster.
    • getAttrAuthorizeTime

      @Stability(Stable) @NotNull public String getAttrAuthorizeTime()
      The time (UTC) when the authorization was created.
    • getAttrClusterStatus

      @Stability(Stable) @NotNull public String getAttrClusterStatus()
      The status of the cluster.
    • getAttrEndpointCount

      @Stability(Stable) @NotNull public Number getAttrEndpointCount()
      The number of Redshift-managed VPC endpoints created for the authorization.
    • getAttrGrantee

      @Stability(Stable) @NotNull public String getAttrGrantee()
      The AWS account ID of the grantee of the cluster.
    • getAttrGrantor

      @Stability(Stable) @NotNull public String getAttrGrantor()
      The AWS account ID of the cluster owner.
    • getAttrStatus

      @Stability(Stable) @NotNull public String getAttrStatus()
      The status of the authorization action.
    • getCfnProperties

      @Stability(Stable) @NotNull protected Map<String,Object> getCfnProperties()
      Overrides:
      getCfnProperties in class CfnResource
    • getAccount

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

      @Stability(Stable) public void setAccount(@NotNull String value)
      The AWS account ID of either the cluster owner (grantor) or grantee.
    • getClusterIdentifier

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

      @Stability(Stable) public void setClusterIdentifier(@NotNull String value)
      The cluster identifier.
    • getForce

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

      @Stability(Stable) public void setForce(@Nullable Boolean value)
      Indicates whether to force the revoke action.
    • setForce

      @Stability(Stable) public void setForce(@Nullable IResolvable value)
      Indicates whether to force the revoke action.
    • getVpcIds

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

      @Stability(Stable) public void setVpcIds(@Nullable List<String> value)
      The virtual private cloud (VPC) identifiers to grant access to.