Interface CfnEndpointAuthorizationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointAuthorizationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.120.0 (build 192dc88)",
date="2025-12-05T22:26:43.993Z")
@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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointAuthorizationPropsstatic final classAn implementation forCfnEndpointAuthorizationProps -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccount
The AWS account ID of either the cluster owner (grantor) or grantee.If
Granteeparameter is true, then theAccountvalue is of the grantor.- See Also:
-
getClusterIdentifier
The cluster identifier.- See Also:
-
getForce
Indicates whether to force the revoke action.If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.
Returns union: either
BooleanorIResolvable- See Also:
-
getVpcIds
The virtual private cloud (VPC) identifiers to grant access to.Returns union: Listinvalid input: '<'either
StringorIVPCRef>- See Also:
-
builder
-