Interface ScopeSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ScopeSummary.Builder,ScopeSummary>,SdkBuilder<ScopeSummary.Builder,ScopeSummary>,SdkPojo
- Enclosing class:
- ScopeSummary
public static interface ScopeSummary.Builder extends SdkPojo, CopyableBuilder<ScopeSummary.Builder,ScopeSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ScopeSummary.BuilderscopeArn(String scopeArn)The Amazon Resource Name (ARN) of the scope.ScopeSummary.BuilderscopeId(String scopeId)The identifier for the scope that includes the resources you want to get data results for.ScopeSummary.Builderstatus(String status)The status of a scope.ScopeSummary.Builderstatus(ScopeStatus status)The status of a scope.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
scopeId
ScopeSummary.Builder scopeId(String scopeId)
The identifier for the scope that includes the resources you want to get data results for. A scope ID is an internally-generated identifier that includes all the resources for a specific root account.
- Parameters:
scopeId- The identifier for the scope that includes the resources you want to get data results for. A scope ID is an internally-generated identifier that includes all the resources for a specific root account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
ScopeSummary.Builder status(String status)
The status of a scope. The status can be one of the following, depending on the state of scope creation:
SUCCEEDED,IN_PROGRESS, orFAILED.- Parameters:
status- The status of a scope. The status can be one of the following, depending on the state of scope creation:SUCCEEDED,IN_PROGRESS, orFAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScopeStatus,ScopeStatus
-
status
ScopeSummary.Builder status(ScopeStatus status)
The status of a scope. The status can be one of the following, depending on the state of scope creation:
SUCCEEDED,IN_PROGRESS, orFAILED.- Parameters:
status- The status of a scope. The status can be one of the following, depending on the state of scope creation:SUCCEEDED,IN_PROGRESS, orFAILED.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ScopeStatus,ScopeStatus
-
scopeArn
ScopeSummary.Builder scopeArn(String scopeArn)
The Amazon Resource Name (ARN) of the scope.
- Parameters:
scopeArn- The Amazon Resource Name (ARN) of the scope.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-