Class: Aws::SecurityHub::Types::AwsLambdaFunctionLayer
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsLambdaFunctionLayer
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass AwsLambdaFunctionLayer data as a hash:
{
arn: "NonEmptyString",
code_size: 1,
}
An Lambda layer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The ARN of the function layer.
-
#code_size ⇒ Integer
The size of the layer archive in bytes.
Instance Attribute Details
#arn ⇒ String
The ARN of the function layer.
13725 13726 13727 13728 13729 13730 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 13725 class AwsLambdaFunctionLayer < Struct.new( :arn, :code_size) SENSITIVE = [] include Aws::Structure end |
#code_size ⇒ Integer
The size of the layer archive in bytes.
13725 13726 13727 13728 13729 13730 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 13725 class AwsLambdaFunctionLayer < Struct.new( :arn, :code_size) SENSITIVE = [] include Aws::Structure end |