@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
41 lines (40 loc) • 1.37 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource type definition for AWS::SSMIncidents::ReplicationSet
*/
export declare function getReplicationSet(args: GetReplicationSetArgs, opts?: pulumi.InvokeOptions): Promise<GetReplicationSetResult>;
export interface GetReplicationSetArgs {
/**
* The ARN of the ReplicationSet.
*/
arn: string;
}
export interface GetReplicationSetResult {
/**
* The ARN of the ReplicationSet.
*/
readonly arn?: string;
/**
* Determines if the replication set deletion protection is enabled or not. If deletion protection is enabled, you can't delete the last Region in the replication set.
*/
readonly deletionProtected?: boolean;
/**
* The ReplicationSet configuration.
*/
readonly regions?: outputs.ssmincidents.ReplicationSetReplicationRegion[];
/**
* The tags to apply to the replication set.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource type definition for AWS::SSMIncidents::ReplicationSet
*/
export declare function getReplicationSetOutput(args: GetReplicationSetOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetReplicationSetResult>;
export interface GetReplicationSetOutputArgs {
/**
* The ARN of the ReplicationSet.
*/
arn: pulumi.Input<string>;
}