Struct aws_sdk_sagemaker::input::CreateCodeRepositoryInput [−][src]
#[non_exhaustive]pub struct CreateCodeRepositoryInput {
pub code_repository_name: Option<String>,
pub git_config: Option<GitConfig>,
pub tags: Option<Vec<Tag>>,
}
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.code_repository_name: Option<String>
The name of the Git repository. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
git_config: Option<GitConfig>
Specifies details about the repository, including the URL where the repository is located, the default branch, and credentials to use to access the repository.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
Implementations
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateCodeRepository, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateCodeRepository, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateCodeRepository
>
Creates a new builder-style object to manufacture CreateCodeRepositoryInput
The name of the Git repository. The name must have 1 to 63 characters. Valid characters are a-z, A-Z, 0-9, and - (hyphen).
Specifies details about the repository, including the URL where the repository is located, the default branch, and credentials to use to access the repository.
An array of key-value pairs. You can use tags to categorize your Amazon Web Services resources in different ways, for example, by purpose, owner, or environment. For more information, see Tagging Amazon Web Services Resources.
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for CreateCodeRepositoryInput
impl Send for CreateCodeRepositoryInput
impl Sync for CreateCodeRepositoryInput
impl Unpin for CreateCodeRepositoryInput
impl UnwindSafe for CreateCodeRepositoryInput
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more