PutFileEntry
public struct PutFileEntry : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The content of the file, if a source file is not specified.
Declaration
Swift
public let fileContent: Data?
-
The extrapolated file mode permissions for the file. Valid values include EXECUTABLE and NORMAL.
Declaration
Swift
public let fileMode: FileModeTypeEnum?
-
The full path to the file in the repository, including the name of the file.
Declaration
Swift
public let filePath: String
-
The name and full path of the file that contains the changes you want to make as part of the commit, if you are not providing the file content directly.
Declaration
Swift
public let sourceFile: SourceFileSpecifier?
-
Undocumented
Declaration
Swift
public init(fileContent: Data? = nil, fileMode: FileModeTypeEnum? = nil, filePath: String, sourceFile: SourceFileSpecifier? = nil)
-
Declaration
Swift
public func validate(name: String) throws