Class: Aws::Route53Profiles::Types::CreateProfileRequest

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

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#client_tokenString

‘ClientToken` is an idempotency token that ensures a call to `CreateProfile` completes only once. You choose the value to pass. For example, an issue might prevent you from getting a response from `CreateProfile`. In this case, safely retry your call to `CreateProfile` by using the same `CreateProfile` parameter value.

**A suitable default value is auto-generated.** You should normally not need to pass this option.

Returns:

  • (String)


148
149
150
151
152
153
154
# File 'lib/aws-sdk-route53profiles/types.rb', line 148

class CreateProfileRequest < Struct.new(
  :client_token,
  :name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

A name for the Profile.

Returns:

  • (String)


148
149
150
151
152
153
154
# File 'lib/aws-sdk-route53profiles/types.rb', line 148

class CreateProfileRequest < Struct.new(
  :client_token,
  :name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of the tag keys and values that you want to associate with the Route 53 Profile.

Returns:



148
149
150
151
152
153
154
# File 'lib/aws-sdk-route53profiles/types.rb', line 148

class CreateProfileRequest < Struct.new(
  :client_token,
  :name,
  :tags)
  SENSITIVE = []
  include Aws::Structure
end