Class: Aws::WellArchitected::Types::GetLensVersionDifferenceInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::WellArchitected::Types::GetLensVersionDifferenceInput
- Defined in:
- gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb
Overview
Note:
When making an API call, you may pass GetLensVersionDifferenceInput data as a hash:
{
lens_alias: "LensAlias", # required
base_lens_version: "LensVersion",
target_lens_version: "LensVersion",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#base_lens_version ⇒ String
The base version of the lens.
-
#lens_alias ⇒ String
The alias of the lens.
-
#target_lens_version ⇒ String
The lens version to target a difference for.
Instance Attribute Details
#base_lens_version ⇒ String
The base version of the lens.
1516 1517 1518 1519 1520 1521 1522 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 1516 class GetLensVersionDifferenceInput < Struct.new( :lens_alias, :base_lens_version, :target_lens_version) SENSITIVE = [] include Aws::Structure end |
#lens_alias ⇒ String
The alias of the lens.
For Amazon Web Services official lenses, this is either the lens
alias, such as serverless
, or the lens ARN, such as
arn:aws:wellarchitected:us-west-2::lens/serverless
.
For custom lenses, this is the lens ARN, such as
arn:aws:wellarchitected:us-east-1:123456789012:lens/my-lens
.
Each lens is identified by its LensSummary$LensAlias.
1516 1517 1518 1519 1520 1521 1522 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 1516 class GetLensVersionDifferenceInput < Struct.new( :lens_alias, :base_lens_version, :target_lens_version) SENSITIVE = [] include Aws::Structure end |
#target_lens_version ⇒ String
The lens version to target a difference for.
1516 1517 1518 1519 1520 1521 1522 |
# File 'gems/aws-sdk-wellarchitected/lib/aws-sdk-wellarchitected/types.rb', line 1516 class GetLensVersionDifferenceInput < Struct.new( :lens_alias, :base_lens_version, :target_lens_version) SENSITIVE = [] include Aws::Structure end |