@Generated(value="jsii-pacmak/1.50.0 (build d1830a4)", date="2022-01-09T19:25:26.053Z") @Stability(value=Stable) public interface CfnEndpointAuthorizationProps extends software.amazon.jsii.JsiiSerializable
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() |
String |
getAccount()
The A AWS account ID of either the cluster owner (grantor) or grantee.
|
String |
getClusterIdentifier()
The cluster identifier.
|
default Object |
getForce()
Indicates whether to force the revoke action.
|
default List<String> |
getVpcIds()
The virtual private cloud (VPC) identifiers to grant access to.
|
@Stability(value=Stable) @NotNull String getAccount()
If Grantee parameter is true, then the Account value is of the grantor.
@Stability(value=Stable) @NotNull String getClusterIdentifier()
@Stability(value=Stable) @Nullable default Object getForce()
If true, the Redshift-managed VPC endpoints associated with the endpoint authorization are also deleted.
@Stability(value=Stable) @Nullable default List<String> getVpcIds()
@Stability(value=Stable) static CfnEndpointAuthorizationProps.Builder builder()
Copyright © 2022. All rights reserved.