Class: Aws::EC2::Types::CidrAuthorizationContext

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Note:

When making an API call, you may pass CidrAuthorizationContext data as a hash:

{
  message: "String", # required
  signature: "String", # required
}

Provides authorization for Amazon to bring a specific IP address range to a specific AWS account using bring your own IP addresses (BYOIP).

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

The plain-text authorization message for the prefix and account.

Returns:

  • (String)


2749
2750
2751
2752
2753
# File 'lib/aws-sdk-ec2/types.rb', line 2749

class CidrAuthorizationContext < Struct.new(
  :message,
  :signature)
  include Aws::Structure
end

#signatureString

The signed authorization message for the prefix and account.

Returns:

  • (String)


2749
2750
2751
2752
2753
# File 'lib/aws-sdk-ec2/types.rb', line 2749

class CidrAuthorizationContext < Struct.new(
  :message,
  :signature)
  include Aws::Structure
end