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 AWS Lambda layer.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) of the function layer.
-
#code_size ⇒ Integer
The size of the layer archive in bytes.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) of the function layer.
6843 6844 6845 6846 6847 6848 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6843 class AwsLambdaFunctionLayer < Struct.new( :arn, :code_size) SENSITIVE = [] include Aws::Structure end |
#code_size ⇒ Integer
The size of the layer archive in bytes.
6843 6844 6845 6846 6847 6848 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6843 class AwsLambdaFunctionLayer < Struct.new( :arn, :code_size) SENSITIVE = [] include Aws::Structure end |