Class: Aws::EC2::Types::ProvisionByoipCidrRequest

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 ProvisionByoipCidrRequest data as a hash:

{
  cidr: "String", # required
  cidr_authorization_context: {
    message: "String", # required
    signature: "String", # required
  },
  description: "String",
  dry_run: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#cidrString

The public IPv4 address range, in CIDR notation. The most specific prefix that you can specify is /24. The address range cannot overlap with another address range that you’ve brought to this or another region.

Returns:

  • (String)


28045
28046
28047
28048
28049
28050
28051
# File 'lib/aws-sdk-ec2/types.rb', line 28045

class ProvisionByoipCidrRequest < Struct.new(
  :cidr,
  :cidr_authorization_context,
  :description,
  :dry_run)
  include Aws::Structure
end

#cidr_authorization_contextTypes::CidrAuthorizationContext

A signed document that proves that you are authorized to bring the specified IP address range to Amazon using BYOIP.



28045
28046
28047
28048
28049
28050
28051
# File 'lib/aws-sdk-ec2/types.rb', line 28045

class ProvisionByoipCidrRequest < Struct.new(
  :cidr,
  :cidr_authorization_context,
  :description,
  :dry_run)
  include Aws::Structure
end

#descriptionString

A description for the address range and the address pool.

Returns:

  • (String)


28045
28046
28047
28048
28049
28050
28051
# File 'lib/aws-sdk-ec2/types.rb', line 28045

class ProvisionByoipCidrRequest < Struct.new(
  :cidr,
  :cidr_authorization_context,
  :description,
  :dry_run)
  include Aws::Structure
end

#dry_runBoolean

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`.

Returns:

  • (Boolean)


28045
28046
28047
28048
28049
28050
28051
# File 'lib/aws-sdk-ec2/types.rb', line 28045

class ProvisionByoipCidrRequest < Struct.new(
  :cidr,
  :cidr_authorization_context,
  :description,
  :dry_run)
  include Aws::Structure
end