UpdateDatastoreRequest

public struct UpdateDatastoreRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the data store to be updated.

    Declaration

    Swift

    public let datastoreName: String
  • Where data store data is stored. You may choose one of “serviceManagedS3” or “customerManagedS3” storage. If not specified, the default is “serviceManagedS3”. This cannot be changed after the data store is created.

    Declaration

    Swift

    public let datastoreStorage: DatastoreStorage?
  • How long, in days, message data is kept for the data store. The retention period cannot be updated if the data store’s S3 storage is customer-managed.

    Declaration

    Swift

    public let retentionPeriod: RetentionPeriod?
  • Undocumented

    Declaration

    Swift

    public init(datastoreName: String, datastoreStorage: DatastoreStorage? = nil, retentionPeriod: RetentionPeriod? = nil)
  • Declaration

    Swift

    public func validate(name: String) throws