Partner

class Partner : KotlinCustomResource

Creates a new Amazon Redshift Partner Integration.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.redshift.Partner;
import com.pulumi.aws.redshift.PartnerArgs;
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 Partner("example", PartnerArgs.builder()
.clusterIdentifier(aws_redshift_cluster.example().id())
.accountId(1234567910)
.databaseName(aws_redshift_cluster.example().database_name())
.partnerName("example")
.build());
}
}

Import

Redshift usage limits can be imported using the id, e.g.,

$ pulumi import aws:redshift/partner:Partner example 01234567910:cluster-example-id:example:example

Properties

Link copied to clipboard
val accountId: Output<String>

The Amazon Web Services account ID that owns the cluster.

Link copied to clipboard

The cluster identifier of the cluster that receives data from the partner.

Link copied to clipboard
val databaseName: Output<String>

The name of the database that receives data from the partner.

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val partnerName: Output<String>

The name of the partner that is authorized to send data.

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

(Optional) The partner integration status.

Link copied to clipboard
val statusMessage: Output<String>

(Optional) The status message provided by the partner.

Link copied to clipboard
val urn: Output<String>