Interface EventTracker.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<EventTracker.Builder,EventTracker>,SdkBuilder<EventTracker.Builder,EventTracker>,SdkPojo
- Enclosing class:
- EventTracker
public static interface EventTracker.Builder extends SdkPojo, CopyableBuilder<EventTracker.Builder,EventTracker>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EventTracker.BuilderaccountId(String accountId)The Amazon Web Services account that owns the event tracker.EventTracker.BuildercreationDateTime(Instant creationDateTime)The date and time (in Unix format) that the event tracker was created.EventTracker.BuilderdatasetGroupArn(String datasetGroupArn)The Amazon Resource Name (ARN) of the dataset group that receives the event data.EventTracker.BuildereventTrackerArn(String eventTrackerArn)The ARN of the event tracker.EventTracker.BuilderlastUpdatedDateTime(Instant lastUpdatedDateTime)The date and time (in Unix time) that the event tracker was last updated.EventTracker.Buildername(String name)The name of the event tracker.EventTracker.Builderstatus(String status)The status of the event tracker.EventTracker.BuildertrackingId(String trackingId)The ID of the event tracker.-
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
-
name
EventTracker.Builder name(String name)
The name of the event tracker.
- Parameters:
name- The name of the event tracker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventTrackerArn
EventTracker.Builder eventTrackerArn(String eventTrackerArn)
The ARN of the event tracker.
- Parameters:
eventTrackerArn- The ARN of the event tracker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
accountId
EventTracker.Builder accountId(String accountId)
The Amazon Web Services account that owns the event tracker.
- Parameters:
accountId- The Amazon Web Services account that owns the event tracker.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
trackingId
EventTracker.Builder trackingId(String trackingId)
The ID of the event tracker. Include this ID in requests to the PutEvents API.
- Parameters:
trackingId- The ID of the event tracker. Include this ID in requests to the PutEvents API.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
datasetGroupArn
EventTracker.Builder datasetGroupArn(String datasetGroupArn)
The Amazon Resource Name (ARN) of the dataset group that receives the event data.
- Parameters:
datasetGroupArn- The Amazon Resource Name (ARN) of the dataset group that receives the event data.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
status
EventTracker.Builder status(String status)
The status of the event tracker.
An event tracker can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
- Parameters:
status- The status of the event tracker.An event tracker can be in one of the following states:
-
CREATE PENDING > CREATE IN_PROGRESS > ACTIVE -or- CREATE FAILED
-
DELETE PENDING > DELETE IN_PROGRESS
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
creationDateTime
EventTracker.Builder creationDateTime(Instant creationDateTime)
The date and time (in Unix format) that the event tracker was created.
- Parameters:
creationDateTime- The date and time (in Unix format) that the event tracker was created.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
lastUpdatedDateTime
EventTracker.Builder lastUpdatedDateTime(Instant lastUpdatedDateTime)
The date and time (in Unix time) that the event tracker was last updated.
- Parameters:
lastUpdatedDateTime- The date and time (in Unix time) that the event tracker was last updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-