@Generated(value="jsii-pacmak/1.74.0 (build 6d08790)",
date="2023-03-22T19:35:45.847Z")
public interface CfnEndpointAuthorizationProps
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();
Modifier and Type | Interface and Description |
---|---|
static class |
CfnEndpointAuthorizationProps.Builder
A builder for
CfnEndpointAuthorizationProps |
static class |
CfnEndpointAuthorizationProps.Jsii$Proxy
An implementation for
CfnEndpointAuthorizationProps |
Modifier and Type | Method and Description |
---|---|
static CfnEndpointAuthorizationProps.Builder |
builder() |
java.lang.String |
getAccount()
The AWS account ID of either the cluster owner (grantor) or grantee.
|
java.lang.String |
getClusterIdentifier()
The cluster identifier.
|
default java.lang.Object |
getForce()
Indicates whether to force the revoke action.
|
default java.util.List<java.lang.String> |
getVpcIds()
The virtual private cloud (VPC) identifiers to grant access to.
|
java.lang.String getAccount()
If Grantee
parameter is true, then the Account
value is of the grantor.
java.lang.String getClusterIdentifier()
default java.lang.Object getForce()
If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.
default java.util.List<java.lang.String> getVpcIds()
static CfnEndpointAuthorizationProps.Builder builder()