Class: Aws::Lambda::Types::ListFunctionsByCodeSigningConfigRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Lambda::Types::ListFunctionsByCodeSigningConfigRequest
- Defined in:
- gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb
Overview
Note:
When making an API call, you may pass ListFunctionsByCodeSigningConfigRequest data as a hash:
{
code_signing_config_arn: "CodeSigningConfigArn", # required
marker: "String",
max_items: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#code_signing_config_arn ⇒ String
The The Amazon Resource Name (ARN) of the code signing configuration.
-
#marker ⇒ String
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
-
#max_items ⇒ Integer
Maximum number of items to return.
Instance Attribute Details
#code_signing_config_arn ⇒ String
The The Amazon Resource Name (ARN) of the code signing configuration.
3602 3603 3604 3605 3606 3607 3608 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3602 class ListFunctionsByCodeSigningConfigRequest < Struct.new( :code_signing_config_arn, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#marker ⇒ String
Specify the pagination token that's returned by a previous request to retrieve the next page of results.
3602 3603 3604 3605 3606 3607 3608 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3602 class ListFunctionsByCodeSigningConfigRequest < Struct.new( :code_signing_config_arn, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |
#max_items ⇒ Integer
Maximum number of items to return.
3602 3603 3604 3605 3606 3607 3608 |
# File 'gems/aws-sdk-lambda/lib/aws-sdk-lambda/types.rb', line 3602 class ListFunctionsByCodeSigningConfigRequest < Struct.new( :code_signing_config_arn, :marker, :max_items) SENSITIVE = [] include Aws::Structure end |