@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
142 lines • 5.78 kB
JavaScript
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
Object.defineProperty(exports, "__esModule", { value: true });
exports.Replicator = void 0;
const pulumi = require("@pulumi/pulumi");
const utilities = require("../utilities");
/**
* Resource for managing an AWS Managed Streaming for Kafka Replicator.
*
* ## Example Usage
*
* ### Basic Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const test = new aws.msk.Replicator("test", {
* replicatorName: "test-name",
* description: "test-description",
* serviceExecutionRoleArn: sourceAwsIamRole.arn,
* kafkaClusters: [
* {
* amazonMskCluster: {
* mskClusterArn: source.arn,
* },
* vpcConfig: {
* subnetIds: sourceAwsSubnet.map(__item => __item.id),
* securityGroupsIds: [sourceAwsSecurityGroup.id],
* },
* },
* {
* amazonMskCluster: {
* mskClusterArn: target.arn,
* },
* vpcConfig: {
* subnetIds: targetAwsSubnet.map(__item => __item.id),
* securityGroupsIds: [targetAwsSecurityGroup.id],
* },
* },
* ],
* replicationInfoList: {
* sourceKafkaClusterArn: source.arn,
* targetKafkaClusterArn: target.arn,
* targetCompressionType: "NONE",
* topicReplications: [{
* topicNameConfiguration: {
* type: "PREFIXED_WITH_SOURCE_CLUSTER_ALIAS",
* },
* topicsToReplicates: [".*"],
* startingPosition: {
* type: "LATEST",
* },
* }],
* consumerGroupReplications: [{
* consumerGroupsToReplicates: [".*"],
* }],
* },
* });
* ```
*
* ## Import
*
* Using `pulumi import`, import MSK replicators using the replicator ARN. For example:
*
* ```sh
* $ pulumi import aws:msk/replicator:Replicator example arn:aws:kafka:us-west-2:123456789012:configuration/example/279c0212-d057-4dba-9aa9-1c4e5a25bfc7-3
* ```
*/
class Replicator extends pulumi.CustomResource {
/**
* Get an existing Replicator resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name, id, state, opts) {
return new Replicator(name, state, { ...opts, id: id });
}
/**
* Returns true if the given object is an instance of Replicator. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj) {
if (obj === undefined || obj === null) {
return false;
}
return obj['__pulumiType'] === Replicator.__pulumiType;
}
constructor(name, argsOrState, opts) {
let resourceInputs = {};
opts = opts || {};
if (opts.id) {
const state = argsOrState;
resourceInputs["arn"] = state?.arn;
resourceInputs["currentVersion"] = state?.currentVersion;
resourceInputs["description"] = state?.description;
resourceInputs["kafkaClusters"] = state?.kafkaClusters;
resourceInputs["region"] = state?.region;
resourceInputs["replicationInfoList"] = state?.replicationInfoList;
resourceInputs["replicatorName"] = state?.replicatorName;
resourceInputs["serviceExecutionRoleArn"] = state?.serviceExecutionRoleArn;
resourceInputs["tags"] = state?.tags;
resourceInputs["tagsAll"] = state?.tagsAll;
}
else {
const args = argsOrState;
if (args?.kafkaClusters === undefined && !opts.urn) {
throw new Error("Missing required property 'kafkaClusters'");
}
if (args?.replicationInfoList === undefined && !opts.urn) {
throw new Error("Missing required property 'replicationInfoList'");
}
if (args?.replicatorName === undefined && !opts.urn) {
throw new Error("Missing required property 'replicatorName'");
}
if (args?.serviceExecutionRoleArn === undefined && !opts.urn) {
throw new Error("Missing required property 'serviceExecutionRoleArn'");
}
resourceInputs["description"] = args?.description;
resourceInputs["kafkaClusters"] = args?.kafkaClusters;
resourceInputs["region"] = args?.region;
resourceInputs["replicationInfoList"] = args?.replicationInfoList;
resourceInputs["replicatorName"] = args?.replicatorName;
resourceInputs["serviceExecutionRoleArn"] = args?.serviceExecutionRoleArn;
resourceInputs["tags"] = args?.tags;
resourceInputs["arn"] = undefined /*out*/;
resourceInputs["currentVersion"] = undefined /*out*/;
resourceInputs["tagsAll"] = undefined /*out*/;
}
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
super(Replicator.__pulumiType, name, resourceInputs, opts);
}
}
exports.Replicator = Replicator;
/** @internal */
Replicator.__pulumiType = 'aws:msk/replicator:Replicator';
//# sourceMappingURL=replicator.js.map
;