Class: Aws::WellArchitected::Types::ExportLensInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::WellArchitected::Types::ExportLensInput
- Defined in:
- gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb
Overview
Note:
When making an API call, you may pass ExportLensInput data as a hash:
{
lens_alias: "LensAlias", # required
lens_version: "LensVersion",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#lens_alias ⇒ String
The alias of the lens, for example,
serverless
. -
#lens_version ⇒ String
The lens version to be exported.
Instance Attribute Details
#lens_alias ⇒ String
The alias of the lens, for example, serverless
.
Each lens is identified by its LensSummary$LensAlias.
1116 1117 1118 1119 1120 1121 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 1116 class ExportLensInput < Struct.new( :lens_alias, :lens_version) SENSITIVE = [] include Aws::Structure end |
#lens_version ⇒ String
The lens version to be exported.
1116 1117 1118 1119 1120 1121 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 1116 class ExportLensInput < Struct.new( :lens_alias, :lens_version) SENSITIVE = [] include Aws::Structure end |