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 for an Android app.
Instance Attribute Details
#certificate_fingerprint ⇒ String
20 byte SHA-1 certificate fingerprint associated with the Android app signing certificate.
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 |
#package ⇒ String
Unique package name for an Android app.
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 |