Method: Aws::MediaConvert::Client#disassociate_certificate

Defined in:
lib/aws-sdk-mediaconvert/client.rb

#disassociate_certificate(params = {}) ⇒ Struct

Removes an association between the Amazon Resource Name (ARN) of an AWS Certificate Manager (ACM) certificate and an AWS Elemental MediaConvert resource.

Examples:

Request syntax with placeholder values


resp = client.disassociate_certificate({
  arn: "__string", # required
})

Parameters:

  • params (Hash) (defaults to: {})

    ({})

Options Hash (params):

  • :arn (required, String)

    The ARN of the ACM certificate that you want to disassociate from your MediaConvert resource.

Returns:

  • (Struct)

    Returns an empty response.

See Also:



2465
2466
2467
2468
# File 'lib/aws-sdk-mediaconvert/client.rb', line 2465

def disassociate_certificate(params = {}, options = {})
  req = build_request(:disassociate_certificate, params)
  req.send_request(options)
end