Skip to content

Stop Source Network Replication

drs_stop_source_network_replication R Documentation

Stops replication for a Source Network

Description

Stops replication for a Source Network. This action would make the Source Network unprotected.

Usage

drs_stop_source_network_replication(sourceNetworkID)

Arguments

sourceNetworkID

[required] ID of the Source Network to stop replication.

Value

A list with the following syntax:

list(
  sourceNetwork = list(
    arn = "string",
    cfnStackName = "string",
    lastRecovery = list(
      apiCallDateTime = as.POSIXct(
        "2015-01-01"
      ),
      jobID = "string",
      lastRecoveryResult = "NOT_STARTED"|"IN_PROGRESS"|"SUCCESS"|"FAIL"|"PARTIAL_SUCCESS"|"ASSOCIATE_SUCCESS"|"ASSOCIATE_FAIL"
    ),
    launchedVpcID = "string",
    replicationStatus = "STOPPED"|"IN_PROGRESS"|"PROTECTED"|"ERROR",
    replicationStatusDetails = "string",
    sourceAccountID = "string",
    sourceNetworkID = "string",
    sourceRegion = "string",
    sourceVpcID = "string",
    tags = list(
      "string"
    )
  )
)

Request syntax

svc$stop_source_network_replication(
  sourceNetworkID = "string"
)