Class: Aws::LocationService::Types::AndroidApp
- Inherits:
-
Struct
- Object
- Struct
- Aws::LocationService::Types::AndroidApp
- 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
-
#certificate_fingerprint ⇒ String
20 byte SHA-1 certificate fingerprint associated with the Android app signing certificate.
-
#package ⇒ String
Unique package name identifier for an Android app.
Instance Attribute Details
#certificate_fingerprint ⇒ String
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
46 47 48 49 50 51 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 46 class AndroidApp < Struct.new( :package, :certificate_fingerprint) SENSITIVE = [] include Aws::Structure end |
#package ⇒ String
Unique package name identifier for an Android app.
Example: com.mydomain.appname
46 47 48 49 50 51 |
# File 'gems/aws-sdk-locationservice/lib/aws-sdk-locationservice/types.rb', line 46 class AndroidApp < Struct.new( :package, :certificate_fingerprint) SENSITIVE = [] include Aws::Structure end |