Class: Aws::LocationService::Types::AndroidApp

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

Overview

Unique identifying information for an Android app. Consists of a package name and a 20 byte SHA-1 certificate fingerprint.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#certificate_fingerprintString

20 byte SHA-1 certificate fingerprint associated with the Android app signing certificate.

Returns:

  • (String)


41
42
43
44
45
46
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 41

class AndroidApp < Struct.new(
  :package,
  :certificate_fingerprint)
  SENSITIVE = []
  include Aws::Structure
end

#packageString

Unique package name for an Android app.

Returns:

  • (String)


41
42
43
44
45
46
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 41

class AndroidApp < Struct.new(
  :package,
  :certificate_fingerprint)
  SENSITIVE = []
  include Aws::Structure
end