Interface CfnEndpointAuthorizationMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnEndpointAuthorizationMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:04.434Z")
@Stability(Stable)
public interface CfnEndpointAuthorizationMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnEndpointAuthorizationPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.redshift.*;
CfnEndpointAuthorizationMixinProps cfnEndpointAuthorizationMixinProps = CfnEndpointAuthorizationMixinProps.builder()
.account("account")
.clusterIdentifier("clusterIdentifier")
.force(false)
.vpcIds(List.of("vpcIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointAuthorizationMixinPropsstatic final classAn implementation forCfnEndpointAuthorizationMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe AWS account ID of either the cluster owner (grantor) or grantee.default StringThe cluster identifier.default ObjectgetForce()Indicates whether to force the revoke action.The virtual private cloud (VPC) identifiers to grant access to.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
-