Skip to content

Delete Transit Gateway Multicast Domain

ec2_delete_transit_gateway_multicast_domain R Documentation

Deletes the specified transit gateway multicast domain

Description

Deletes the specified transit gateway multicast domain.

Usage

ec2_delete_transit_gateway_multicast_domain(
  TransitGatewayMulticastDomainId, DryRun)

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.

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"
      )
    )
  )
)

Request syntax

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