Class: Aws::Lambda::Types::GetPolicyResponse
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::GetPolicyResponse
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-lambda/types.rb
Overview
Instance Attribute Summary collapse
-
#policy ⇒ String
The resource policy associated with the specified function.
-
#revision_id ⇒ String
Represents the latest updated revision of the function or alias.
Instance Attribute Details
#policy ⇒ String
The resource policy associated with the specified function. The response returns the same as a string using a backslash (“\”) as an escape character in the JSON.
1318 1319 1320 1321 1322 |
# File 'lib/aws-sdk-lambda/types.rb', line 1318 class GetPolicyResponse < Struct.new( :policy, :revision_id) include Aws::Structure end |
#revision_id ⇒ String
Represents the latest updated revision of the function or alias.
1318 1319 1320 1321 1322 |
# File 'lib/aws-sdk-lambda/types.rb', line 1318 class GetPolicyResponse < Struct.new( :policy, :revision_id) include Aws::Structure end |