Class: Aws::MigrationHub::Types::ResourceAttribute

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb

Overview

Attribute associated with a resource.

Note the corresponding format required per type listed below:

IPV4

x.x.x.x

where x is an integer in the range [0,255]

IPV6

y : y : y : y : y : y : y : y

where y is a hexadecimal between 0 and FFFF. [0, FFFF]

MAC_ADDRESS

^([0-9A-Fa-f]\{2\}[:-])\{5\}([0-9A-Fa-f]\{2\})$

FQDN

^[^<>\{\}\\\\/?,=\\p\{Cntrl\}]\{1,256\}$

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#typeString

Type of resource.

Returns:

  • (String)


933
934
935
936
937
938
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 933

class ResourceAttribute < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

Value of the resource type.

Returns:

  • (String)


933
934
935
936
937
938
# File 'gems/aws-sdk-migrationhub/lib/aws-sdk-migrationhub/types.rb', line 933

class ResourceAttribute < Struct.new(
  :type,
  :value)
  SENSITIVE = []
  include Aws::Structure
end