Learn R Programming

paws.compute (version 0.1.12)

ec2_delete_transit_gateway_multicast_domain: Deletes the specified transit gateway multicast domain

Description

Deletes the specified transit gateway multicast domain.

Usage

ec2_delete_transit_gateway_multicast_domain(
  TransitGatewayMulticastDomainId, DryRun)

Value

A list with the following syntax:

list(
  TransitGatewayMulticastDomain = list(
    TransitGatewayMulticastDomainId = "string",
    TransitGatewayId = "string",
    TransitGatewayMulticastDomainArn = "string",
    OwnerId = "string",
    Options = list(
      Igmpv2Support = "enable"|"disable",
      StaticSourcesSupport = "enable"|"disable",
      AutoAcceptSharedAssociations = "enable"|"disable"
    ),
    State = "pending"|"available"|"deleting"|"deleted",
    CreationTime = as.POSIXct(
      "2015-01-01"
    ),
    Tags = list(
      list(
        Key = "string",
        Value = "string"
      )
    )
  )
)

Arguments

TransitGatewayMulticastDomainId

[required] The ID of the transit gateway multicast domain.

DryRun

Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.

Request syntax

svc$delete_transit_gateway_multicast_domain(
  TransitGatewayMulticastDomainId = "string",
  DryRun = TRUE|FALSE
)