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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-route53profiles/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)


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

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

#nameString

A name for the Profile.

Returns:

  • (String)


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

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:



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

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