EndpointAccess

class EndpointAccess : KotlinCustomResource

Creates a new Amazon Redshift endpoint access.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshift.EndpointAccess;
import com.pulumi.aws.redshift.EndpointAccessArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var example = new EndpointAccess("example", EndpointAccessArgs.builder()
.endpointName("example")
.subnetGroupName(aws_redshift_subnet_group.example().id())
.clusterIdentifier(aws_redshift_cluster.example().cluster_identifier())
.build());
}
}

Import

Redshift endpoint access can be imported using the name, e.g.,

$ pulumi import aws:redshift/endpointAccess:EndpointAccess example example

Properties

Link copied to clipboard
val address: Output<String>

The DNS address of the endpoint.

Link copied to clipboard

The cluster identifier of the cluster to access.

Link copied to clipboard
val endpointName: Output<String>

The Redshift-managed VPC endpoint name.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val port: Output<Int>

The port number on which the cluster accepts incoming connections.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val resourceOwner: Output<String>

The Amazon Web Services account ID of the owner of the cluster. This is only required if the cluster is in another Amazon Web Services account.

Link copied to clipboard
val subnetGroupName: Output<String>

The subnet group from which Amazon Redshift chooses the subnet to deploy the endpoint.

Link copied to clipboard
val urn: Output<String>
Link copied to clipboard

The connection endpoint for connecting to an Amazon Redshift cluster through the proxy. See details below.

Link copied to clipboard

The security group that defines the ports, protocols, and sources for inbound traffic that you are authorizing into your endpoint.