Class: Aws::IoT::Types::SigV4Authorization

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

Overview

Note:

When making an API call, you may pass SigV4Authorization data as a hash:

{
  signing_region: "SigningRegion", # required
  service_name: "ServiceName", # required
  role_arn: "AwsArn", # required
}

For more information, see [Signature Version 4 signing process].

[1]: docs.aws.amazon.com/general/latest/gr/signature-version-4.html

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#role_arnString

The ARN of the signing role.

Returns:

  • (String)


16558
16559
16560
16561
16562
16563
16564
# File 'lib/aws-sdk-iot/types.rb', line 16558

class SigV4Authorization < Struct.new(
  :signing_region,
  :service_name,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#service_nameString

The service name to use while signing with Sig V4.

Returns:

  • (String)


16558
16559
16560
16561
16562
16563
16564
# File 'lib/aws-sdk-iot/types.rb', line 16558

class SigV4Authorization < Struct.new(
  :signing_region,
  :service_name,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end

#signing_regionString

The signing region.

Returns:

  • (String)


16558
16559
16560
16561
16562
16563
16564
# File 'lib/aws-sdk-iot/types.rb', line 16558

class SigV4Authorization < Struct.new(
  :signing_region,
  :service_name,
  :role_arn)
  SENSITIVE = []
  include Aws::Structure
end