Interface CfnEndpointAuthorizationProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointAuthorizationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-10-10T18:25:29.938Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnEndpointAuthorizationProps
static final class
An 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
Grantee
parameter is true, then theAccount
value 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.
- See Also:
-
getVpcIds
The virtual private cloud (VPC) identifiers to grant access to.- See Also:
-
builder
-