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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

Example: ‘BB:0D:AC:74:D3:21:E1:43:67:71:9B:62:91:AF:A1:66:6E:44:5D:75`

Returns:

  • (String)


46
47
48
49
50
51
# File 'lib/aws-sdk-locationservice/types.rb', line 46

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

#packageString

Unique package name identifier for an Android app.

Example: ‘com.mydomain.appname`

Returns:

  • (String)


46
47
48
49
50
51
# File 'lib/aws-sdk-locationservice/types.rb', line 46

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