Documentation ¶
Index ¶
- type AccessForbidden
- type BatchGetRecordError
- type BatchGetRecordIdentifier
- type BatchGetRecordResultDetail
- type DeletionMode
- type ExpirationTimeResponse
- type FeatureValue
- type InternalFailure
- type ResourceNotFound
- type ServiceUnavailable
- type TargetStore
- type TtlDuration
- type TtlDurationUnit
- type ValidationError
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type AccessForbidden ¶
type AccessForbidden struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
You do not have permission to perform an action.
func (*AccessForbidden) Error ¶
func (e *AccessForbidden) Error() string
func (*AccessForbidden) ErrorCode ¶
func (e *AccessForbidden) ErrorCode() string
func (*AccessForbidden) ErrorFault ¶
func (e *AccessForbidden) ErrorFault() smithy.ErrorFault
func (*AccessForbidden) ErrorMessage ¶
func (e *AccessForbidden) ErrorMessage() string
type BatchGetRecordError ¶
type BatchGetRecordError struct { // The error code of an error that has occurred when attempting to retrieve a // batch of Records. For more information on errors, see [Errors]. // // [Errors]: https://docs.aws.amazon.com/sagemaker/latest/APIReference/API_feature_store_GetRecord.html#API_feature_store_GetRecord_Errors // // This member is required. ErrorCode *string // The error message of an error that has occurred when attempting to retrieve a // record in the batch. // // This member is required. ErrorMessage *string // The name of the feature group that the record belongs to. // // This member is required. FeatureGroupName *string // The value for the RecordIdentifier in string format of a Record from a // FeatureGroup that is causing an error when attempting to be retrieved. // // This member is required. RecordIdentifierValueAsString *string // contains filtered or unexported fields }
The error that has occurred when attempting to retrieve a batch of Records.
type BatchGetRecordIdentifier ¶
type BatchGetRecordIdentifier struct { // The name or Amazon Resource Name (ARN) of the FeatureGroup containing the // records you are retrieving in a batch. // // This member is required. FeatureGroupName *string // The value for a list of record identifiers in string format. // // This member is required. RecordIdentifiersValueAsString []string // List of names of Features to be retrieved. If not specified, the latest value // for all the Features are returned. FeatureNames []string // contains filtered or unexported fields }
The identifier that identifies the batch of Records you are retrieving in a batch.
type BatchGetRecordResultDetail ¶
type BatchGetRecordResultDetail struct { // The FeatureGroupName containing Records you retrieved in a batch. // // This member is required. FeatureGroupName *string // The Record retrieved. // // This member is required. Record []FeatureValue // The value of the record identifier in string format. // // This member is required. RecordIdentifierValueAsString *string // The ExpiresAt ISO string of the requested record. ExpiresAt *string // contains filtered or unexported fields }
The output of records that have been retrieved in a batch.
type DeletionMode ¶
type DeletionMode string
const ( DeletionModeSoftDelete DeletionMode = "SoftDelete" DeletionModeHardDelete DeletionMode = "HardDelete" )
Enum values for DeletionMode
func (DeletionMode) Values ¶
func (DeletionMode) Values() []DeletionMode
Values returns all known values for DeletionMode. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type ExpirationTimeResponse ¶
type ExpirationTimeResponse string
const ( ExpirationTimeResponseEnabled ExpirationTimeResponse = "Enabled" ExpirationTimeResponseDisabled ExpirationTimeResponse = "Disabled" )
Enum values for ExpirationTimeResponse
func (ExpirationTimeResponse) Values ¶
func (ExpirationTimeResponse) Values() []ExpirationTimeResponse
Values returns all known values for ExpirationTimeResponse. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type FeatureValue ¶
type FeatureValue struct { // The name of a feature that a feature value corresponds to. // // This member is required. FeatureName *string // The value in string format associated with a feature. Used when your // CollectionType is None . Note that features types can be String , Integral , or // Fractional . This value represents all three types as a string. ValueAsString *string // The list of values in string format associated with a feature. Used when your // CollectionType is a List , Set , or Vector . Note that features types can be // String , Integral , or Fractional . These values represents all three types as a // string. ValueAsStringList []string // contains filtered or unexported fields }
The value associated with a feature.
type InternalFailure ¶
type InternalFailure struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
An internal failure occurred. Try your request again. If the problem persists, contact Amazon Web Services customer support.
func (*InternalFailure) Error ¶
func (e *InternalFailure) Error() string
func (*InternalFailure) ErrorCode ¶
func (e *InternalFailure) ErrorCode() string
func (*InternalFailure) ErrorFault ¶
func (e *InternalFailure) ErrorFault() smithy.ErrorFault
func (*InternalFailure) ErrorMessage ¶
func (e *InternalFailure) ErrorMessage() string
type ResourceNotFound ¶
type ResourceNotFound struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
A resource that is required to perform an action was not found.
func (*ResourceNotFound) Error ¶
func (e *ResourceNotFound) Error() string
func (*ResourceNotFound) ErrorCode ¶
func (e *ResourceNotFound) ErrorCode() string
func (*ResourceNotFound) ErrorFault ¶
func (e *ResourceNotFound) ErrorFault() smithy.ErrorFault
func (*ResourceNotFound) ErrorMessage ¶
func (e *ResourceNotFound) ErrorMessage() string
type ServiceUnavailable ¶
type ServiceUnavailable struct { // contains filtered or unexported fields }
The service is currently unavailable.
func (*ServiceUnavailable) Error ¶
func (e *ServiceUnavailable) Error() string
func (*ServiceUnavailable) ErrorCode ¶
func (e *ServiceUnavailable) ErrorCode() string
func (*ServiceUnavailable) ErrorFault ¶
func (e *ServiceUnavailable) ErrorFault() smithy.ErrorFault
func (*ServiceUnavailable) ErrorMessage ¶
func (e *ServiceUnavailable) ErrorMessage() string
type TargetStore ¶
type TargetStore string
const ( TargetStoreOnlineStore TargetStore = "OnlineStore" TargetStoreOfflineStore TargetStore = "OfflineStore" )
Enum values for TargetStore
func (TargetStore) Values ¶
func (TargetStore) Values() []TargetStore
Values returns all known values for TargetStore. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type TtlDuration ¶
type TtlDuration struct { // TtlDuration time unit. // // This member is required. Unit TtlDurationUnit // TtlDuration time value. // // This member is required. Value *int32 // contains filtered or unexported fields }
Time to live duration, where the record is hard deleted after the expiration time is reached; ExpiresAt = EventTime + TtlDuration . For information on HardDelete, see the DeleteRecordAPI in the Amazon SageMaker API Reference guide.
type TtlDurationUnit ¶
type TtlDurationUnit string
const ( TtlDurationUnitSeconds TtlDurationUnit = "Seconds" TtlDurationUnitMinutes TtlDurationUnit = "Minutes" TtlDurationUnitHours TtlDurationUnit = "Hours" TtlDurationUnitDays TtlDurationUnit = "Days" TtlDurationUnitWeeks TtlDurationUnit = "Weeks" )
Enum values for TtlDurationUnit
func (TtlDurationUnit) Values ¶
func (TtlDurationUnit) Values() []TtlDurationUnit
Values returns all known values for TtlDurationUnit. Note that this can be expanded in the future, and so it is only as up to date as the client.
The ordering of this slice is not guaranteed to be stable across updates.
type ValidationError ¶
type ValidationError struct { Message *string ErrorCodeOverride *string // contains filtered or unexported fields }
There was an error validating your request.
func (*ValidationError) Error ¶
func (e *ValidationError) Error() string
func (*ValidationError) ErrorCode ¶
func (e *ValidationError) ErrorCode() string
func (*ValidationError) ErrorFault ¶
func (e *ValidationError) ErrorFault() smithy.ErrorFault
func (*ValidationError) ErrorMessage ¶
func (e *ValidationError) ErrorMessage() string