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). For more information, see [Prepare to Bring Your Address Range to Your AWS Account] in the *Amazon Elastic Compute Cloud User Guide*.

[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-byoip.html#prepare-for-byoip

Instance Attribute Summary collapse

Instance Attribute Details

#messageString

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

Returns:

  • (String)


2760
2761
2762
2763
2764
# File 'lib/aws-sdk-ec2/types.rb', line 2760

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

#signatureString

The signed authorization message for the prefix and account.

Returns:

  • (String)


2760
2761
2762
2763
2764
# File 'lib/aws-sdk-ec2/types.rb', line 2760

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