Partner
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());
}
}
Content copied to clipboard
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
Content copied to clipboard
Properties
Link copied to clipboard
The cluster identifier of the cluster that receives data from the partner.
Link copied to clipboard
The name of the database that receives data from the partner.
Link copied to clipboard
The name of the partner that is authorized to send data.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
(Optional) The status message provided by the partner.