id
int32 0
167k
| repo
stringlengths 5
54
| path
stringlengths 4
155
| func_name
stringlengths 1
118
| original_string
stringlengths 52
85.5k
| language
stringclasses 1
value | code
stringlengths 52
85.5k
| code_tokens
sequencelengths 21
1.41k
| docstring
stringlengths 6
2.61k
| docstring_tokens
sequencelengths 3
215
| sha
stringlengths 40
40
| url
stringlengths 85
252
|
---|---|---|---|---|---|---|---|---|---|---|---|
700 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetAgentsInfo | func (s *DescribeAgentsOutput) SetAgentsInfo(v []*AgentInfo) *DescribeAgentsOutput {
s.AgentsInfo = v
return s
} | go | func (s *DescribeAgentsOutput) SetAgentsInfo(v []*AgentInfo) *DescribeAgentsOutput {
s.AgentsInfo = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeAgentsOutput",
")",
"SetAgentsInfo",
"(",
"v",
"[",
"]",
"*",
"AgentInfo",
")",
"*",
"DescribeAgentsOutput",
"{",
"s",
".",
"AgentsInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAgentsInfo sets the AgentsInfo field's value. | [
"SetAgentsInfo",
"sets",
"the",
"AgentsInfo",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L3695-L3698 |
701 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetDescriptions | func (s *DescribeContinuousExportsOutput) SetDescriptions(v []*ContinuousExportDescription) *DescribeContinuousExportsOutput {
s.Descriptions = v
return s
} | go | func (s *DescribeContinuousExportsOutput) SetDescriptions(v []*ContinuousExportDescription) *DescribeContinuousExportsOutput {
s.Descriptions = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeContinuousExportsOutput",
")",
"SetDescriptions",
"(",
"v",
"[",
"]",
"*",
"ContinuousExportDescription",
")",
"*",
"DescribeContinuousExportsOutput",
"{",
"s",
".",
"Descriptions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDescriptions sets the Descriptions field's value. | [
"SetDescriptions",
"sets",
"the",
"Descriptions",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L3843-L3846 |
702 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetConfigurationsDownloadUrl | func (s *ExportInfo) SetConfigurationsDownloadUrl(v string) *ExportInfo {
s.ConfigurationsDownloadUrl = &v
return s
} | go | func (s *ExportInfo) SetConfigurationsDownloadUrl(v string) *ExportInfo {
s.ConfigurationsDownloadUrl = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExportInfo",
")",
"SetConfigurationsDownloadUrl",
"(",
"v",
"string",
")",
"*",
"ExportInfo",
"{",
"s",
".",
"ConfigurationsDownloadUrl",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetConfigurationsDownloadUrl sets the ConfigurationsDownloadUrl field's value. | [
"SetConfigurationsDownloadUrl",
"sets",
"the",
"ConfigurationsDownloadUrl",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4468-L4471 |
703 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetExportRequestTime | func (s *ExportInfo) SetExportRequestTime(v time.Time) *ExportInfo {
s.ExportRequestTime = &v
return s
} | go | func (s *ExportInfo) SetExportRequestTime(v time.Time) *ExportInfo {
s.ExportRequestTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExportInfo",
")",
"SetExportRequestTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ExportInfo",
"{",
"s",
".",
"ExportRequestTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetExportRequestTime sets the ExportRequestTime field's value. | [
"SetExportRequestTime",
"sets",
"the",
"ExportRequestTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4480-L4483 |
704 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetRequestedEndTime | func (s *ExportInfo) SetRequestedEndTime(v time.Time) *ExportInfo {
s.RequestedEndTime = &v
return s
} | go | func (s *ExportInfo) SetRequestedEndTime(v time.Time) *ExportInfo {
s.RequestedEndTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExportInfo",
")",
"SetRequestedEndTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ExportInfo",
"{",
"s",
".",
"RequestedEndTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRequestedEndTime sets the RequestedEndTime field's value. | [
"SetRequestedEndTime",
"sets",
"the",
"RequestedEndTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4498-L4501 |
705 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetRequestedStartTime | func (s *ExportInfo) SetRequestedStartTime(v time.Time) *ExportInfo {
s.RequestedStartTime = &v
return s
} | go | func (s *ExportInfo) SetRequestedStartTime(v time.Time) *ExportInfo {
s.RequestedStartTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"ExportInfo",
")",
"SetRequestedStartTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ExportInfo",
"{",
"s",
".",
"RequestedStartTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRequestedStartTime sets the RequestedStartTime field's value. | [
"SetRequestedStartTime",
"sets",
"the",
"RequestedStartTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4504-L4507 |
706 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetAgentSummary | func (s *GetDiscoverySummaryOutput) SetAgentSummary(v *CustomerAgentInfo) *GetDiscoverySummaryOutput {
s.AgentSummary = v
return s
} | go | func (s *GetDiscoverySummaryOutput) SetAgentSummary(v *CustomerAgentInfo) *GetDiscoverySummaryOutput {
s.AgentSummary = v
return s
} | [
"func",
"(",
"s",
"*",
"GetDiscoverySummaryOutput",
")",
"SetAgentSummary",
"(",
"v",
"*",
"CustomerAgentInfo",
")",
"*",
"GetDiscoverySummaryOutput",
"{",
"s",
".",
"AgentSummary",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAgentSummary sets the AgentSummary field's value. | [
"SetAgentSummary",
"sets",
"the",
"AgentSummary",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4638-L4641 |
707 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetConnectorSummary | func (s *GetDiscoverySummaryOutput) SetConnectorSummary(v *CustomerConnectorInfo) *GetDiscoverySummaryOutput {
s.ConnectorSummary = v
return s
} | go | func (s *GetDiscoverySummaryOutput) SetConnectorSummary(v *CustomerConnectorInfo) *GetDiscoverySummaryOutput {
s.ConnectorSummary = v
return s
} | [
"func",
"(",
"s",
"*",
"GetDiscoverySummaryOutput",
")",
"SetConnectorSummary",
"(",
"v",
"*",
"CustomerConnectorInfo",
")",
"*",
"GetDiscoverySummaryOutput",
"{",
"s",
".",
"ConnectorSummary",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetConnectorSummary sets the ConnectorSummary field's value. | [
"SetConnectorSummary",
"sets",
"the",
"ConnectorSummary",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4650-L4653 |
708 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetServersMappedToApplications | func (s *GetDiscoverySummaryOutput) SetServersMappedToApplications(v int64) *GetDiscoverySummaryOutput {
s.ServersMappedToApplications = &v
return s
} | go | func (s *GetDiscoverySummaryOutput) SetServersMappedToApplications(v int64) *GetDiscoverySummaryOutput {
s.ServersMappedToApplications = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetDiscoverySummaryOutput",
")",
"SetServersMappedToApplications",
"(",
"v",
"int64",
")",
"*",
"GetDiscoverySummaryOutput",
"{",
"s",
".",
"ServersMappedToApplications",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetServersMappedToApplications sets the ServersMappedToApplications field's value. | [
"SetServersMappedToApplications",
"sets",
"the",
"ServersMappedToApplications",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4662-L4665 |
709 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetServersMappedtoTags | func (s *GetDiscoverySummaryOutput) SetServersMappedtoTags(v int64) *GetDiscoverySummaryOutput {
s.ServersMappedtoTags = &v
return s
} | go | func (s *GetDiscoverySummaryOutput) SetServersMappedtoTags(v int64) *GetDiscoverySummaryOutput {
s.ServersMappedtoTags = &v
return s
} | [
"func",
"(",
"s",
"*",
"GetDiscoverySummaryOutput",
")",
"SetServersMappedtoTags",
"(",
"v",
"int64",
")",
"*",
"GetDiscoverySummaryOutput",
"{",
"s",
".",
"ServersMappedtoTags",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetServersMappedtoTags sets the ServersMappedtoTags field's value. | [
"SetServersMappedtoTags",
"sets",
"the",
"ServersMappedtoTags",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4668-L4671 |
710 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetApplicationImportFailure | func (s *ImportTask) SetApplicationImportFailure(v int64) *ImportTask {
s.ApplicationImportFailure = &v
return s
} | go | func (s *ImportTask) SetApplicationImportFailure(v int64) *ImportTask {
s.ApplicationImportFailure = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetApplicationImportFailure",
"(",
"v",
"int64",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ApplicationImportFailure",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetApplicationImportFailure sets the ApplicationImportFailure field's value. | [
"SetApplicationImportFailure",
"sets",
"the",
"ApplicationImportFailure",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4757-L4760 |
711 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetApplicationImportSuccess | func (s *ImportTask) SetApplicationImportSuccess(v int64) *ImportTask {
s.ApplicationImportSuccess = &v
return s
} | go | func (s *ImportTask) SetApplicationImportSuccess(v int64) *ImportTask {
s.ApplicationImportSuccess = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetApplicationImportSuccess",
"(",
"v",
"int64",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ApplicationImportSuccess",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetApplicationImportSuccess sets the ApplicationImportSuccess field's value. | [
"SetApplicationImportSuccess",
"sets",
"the",
"ApplicationImportSuccess",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4763-L4766 |
712 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetErrorsAndFailedEntriesZip | func (s *ImportTask) SetErrorsAndFailedEntriesZip(v string) *ImportTask {
s.ErrorsAndFailedEntriesZip = &v
return s
} | go | func (s *ImportTask) SetErrorsAndFailedEntriesZip(v string) *ImportTask {
s.ErrorsAndFailedEntriesZip = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetErrorsAndFailedEntriesZip",
"(",
"v",
"string",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ErrorsAndFailedEntriesZip",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetErrorsAndFailedEntriesZip sets the ErrorsAndFailedEntriesZip field's value. | [
"SetErrorsAndFailedEntriesZip",
"sets",
"the",
"ErrorsAndFailedEntriesZip",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4775-L4778 |
713 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetImportCompletionTime | func (s *ImportTask) SetImportCompletionTime(v time.Time) *ImportTask {
s.ImportCompletionTime = &v
return s
} | go | func (s *ImportTask) SetImportCompletionTime(v time.Time) *ImportTask {
s.ImportCompletionTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetImportCompletionTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ImportCompletionTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetImportCompletionTime sets the ImportCompletionTime field's value. | [
"SetImportCompletionTime",
"sets",
"the",
"ImportCompletionTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4781-L4784 |
714 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetImportDeletedTime | func (s *ImportTask) SetImportDeletedTime(v time.Time) *ImportTask {
s.ImportDeletedTime = &v
return s
} | go | func (s *ImportTask) SetImportDeletedTime(v time.Time) *ImportTask {
s.ImportDeletedTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetImportDeletedTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ImportDeletedTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetImportDeletedTime sets the ImportDeletedTime field's value. | [
"SetImportDeletedTime",
"sets",
"the",
"ImportDeletedTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4787-L4790 |
715 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetImportRequestTime | func (s *ImportTask) SetImportRequestTime(v time.Time) *ImportTask {
s.ImportRequestTime = &v
return s
} | go | func (s *ImportTask) SetImportRequestTime(v time.Time) *ImportTask {
s.ImportRequestTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetImportRequestTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ImportRequestTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetImportRequestTime sets the ImportRequestTime field's value. | [
"SetImportRequestTime",
"sets",
"the",
"ImportRequestTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4793-L4796 |
716 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetServerImportFailure | func (s *ImportTask) SetServerImportFailure(v int64) *ImportTask {
s.ServerImportFailure = &v
return s
} | go | func (s *ImportTask) SetServerImportFailure(v int64) *ImportTask {
s.ServerImportFailure = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetServerImportFailure",
"(",
"v",
"int64",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ServerImportFailure",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetServerImportFailure sets the ServerImportFailure field's value. | [
"SetServerImportFailure",
"sets",
"the",
"ServerImportFailure",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4817-L4820 |
717 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetServerImportSuccess | func (s *ImportTask) SetServerImportSuccess(v int64) *ImportTask {
s.ServerImportSuccess = &v
return s
} | go | func (s *ImportTask) SetServerImportSuccess(v int64) *ImportTask {
s.ServerImportSuccess = &v
return s
} | [
"func",
"(",
"s",
"*",
"ImportTask",
")",
"SetServerImportSuccess",
"(",
"v",
"int64",
")",
"*",
"ImportTask",
"{",
"s",
".",
"ServerImportSuccess",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetServerImportSuccess sets the ServerImportSuccess field's value. | [
"SetServerImportSuccess",
"sets",
"the",
"ServerImportSuccess",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L4823-L4826 |
718 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetNeighborConfigurationIds | func (s *ListServerNeighborsInput) SetNeighborConfigurationIds(v []*string) *ListServerNeighborsInput {
s.NeighborConfigurationIds = v
return s
} | go | func (s *ListServerNeighborsInput) SetNeighborConfigurationIds(v []*string) *ListServerNeighborsInput {
s.NeighborConfigurationIds = v
return s
} | [
"func",
"(",
"s",
"*",
"ListServerNeighborsInput",
")",
"SetNeighborConfigurationIds",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListServerNeighborsInput",
"{",
"s",
".",
"NeighborConfigurationIds",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetNeighborConfigurationIds sets the NeighborConfigurationIds field's value. | [
"SetNeighborConfigurationIds",
"sets",
"the",
"NeighborConfigurationIds",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5087-L5090 |
719 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetPortInformationNeeded | func (s *ListServerNeighborsInput) SetPortInformationNeeded(v bool) *ListServerNeighborsInput {
s.PortInformationNeeded = &v
return s
} | go | func (s *ListServerNeighborsInput) SetPortInformationNeeded(v bool) *ListServerNeighborsInput {
s.PortInformationNeeded = &v
return s
} | [
"func",
"(",
"s",
"*",
"ListServerNeighborsInput",
")",
"SetPortInformationNeeded",
"(",
"v",
"bool",
")",
"*",
"ListServerNeighborsInput",
"{",
"s",
".",
"PortInformationNeeded",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetPortInformationNeeded sets the PortInformationNeeded field's value. | [
"SetPortInformationNeeded",
"sets",
"the",
"PortInformationNeeded",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5099-L5102 |
720 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetKnownDependencyCount | func (s *ListServerNeighborsOutput) SetKnownDependencyCount(v int64) *ListServerNeighborsOutput {
s.KnownDependencyCount = &v
return s
} | go | func (s *ListServerNeighborsOutput) SetKnownDependencyCount(v int64) *ListServerNeighborsOutput {
s.KnownDependencyCount = &v
return s
} | [
"func",
"(",
"s",
"*",
"ListServerNeighborsOutput",
")",
"SetKnownDependencyCount",
"(",
"v",
"int64",
")",
"*",
"ListServerNeighborsOutput",
"{",
"s",
".",
"KnownDependencyCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetKnownDependencyCount sets the KnownDependencyCount field's value. | [
"SetKnownDependencyCount",
"sets",
"the",
"KnownDependencyCount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5133-L5136 |
721 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetNeighbors | func (s *ListServerNeighborsOutput) SetNeighbors(v []*NeighborConnectionDetail) *ListServerNeighborsOutput {
s.Neighbors = v
return s
} | go | func (s *ListServerNeighborsOutput) SetNeighbors(v []*NeighborConnectionDetail) *ListServerNeighborsOutput {
s.Neighbors = v
return s
} | [
"func",
"(",
"s",
"*",
"ListServerNeighborsOutput",
")",
"SetNeighbors",
"(",
"v",
"[",
"]",
"*",
"NeighborConnectionDetail",
")",
"*",
"ListServerNeighborsOutput",
"{",
"s",
".",
"Neighbors",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetNeighbors sets the Neighbors field's value. | [
"SetNeighbors",
"sets",
"the",
"Neighbors",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5139-L5142 |
722 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetConnectionsCount | func (s *NeighborConnectionDetail) SetConnectionsCount(v int64) *NeighborConnectionDetail {
s.ConnectionsCount = &v
return s
} | go | func (s *NeighborConnectionDetail) SetConnectionsCount(v int64) *NeighborConnectionDetail {
s.ConnectionsCount = &v
return s
} | [
"func",
"(",
"s",
"*",
"NeighborConnectionDetail",
")",
"SetConnectionsCount",
"(",
"v",
"int64",
")",
"*",
"NeighborConnectionDetail",
"{",
"s",
".",
"ConnectionsCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetConnectionsCount sets the ConnectionsCount field's value. | [
"SetConnectionsCount",
"sets",
"the",
"ConnectionsCount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5187-L5190 |
723 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetDestinationServerId | func (s *NeighborConnectionDetail) SetDestinationServerId(v string) *NeighborConnectionDetail {
s.DestinationServerId = &v
return s
} | go | func (s *NeighborConnectionDetail) SetDestinationServerId(v string) *NeighborConnectionDetail {
s.DestinationServerId = &v
return s
} | [
"func",
"(",
"s",
"*",
"NeighborConnectionDetail",
")",
"SetDestinationServerId",
"(",
"v",
"string",
")",
"*",
"NeighborConnectionDetail",
"{",
"s",
".",
"DestinationServerId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDestinationServerId sets the DestinationServerId field's value. | [
"SetDestinationServerId",
"sets",
"the",
"DestinationServerId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5199-L5202 |
724 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetSourceServerId | func (s *NeighborConnectionDetail) SetSourceServerId(v string) *NeighborConnectionDetail {
s.SourceServerId = &v
return s
} | go | func (s *NeighborConnectionDetail) SetSourceServerId(v string) *NeighborConnectionDetail {
s.SourceServerId = &v
return s
} | [
"func",
"(",
"s",
"*",
"NeighborConnectionDetail",
")",
"SetSourceServerId",
"(",
"v",
"string",
")",
"*",
"NeighborConnectionDetail",
"{",
"s",
".",
"SourceServerId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSourceServerId sets the SourceServerId field's value. | [
"SetSourceServerId",
"sets",
"the",
"SourceServerId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5205-L5208 |
725 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetTransportProtocol | func (s *NeighborConnectionDetail) SetTransportProtocol(v string) *NeighborConnectionDetail {
s.TransportProtocol = &v
return s
} | go | func (s *NeighborConnectionDetail) SetTransportProtocol(v string) *NeighborConnectionDetail {
s.TransportProtocol = &v
return s
} | [
"func",
"(",
"s",
"*",
"NeighborConnectionDetail",
")",
"SetTransportProtocol",
"(",
"v",
"string",
")",
"*",
"NeighborConnectionDetail",
"{",
"s",
".",
"TransportProtocol",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTransportProtocol sets the TransportProtocol field's value. | [
"SetTransportProtocol",
"sets",
"the",
"TransportProtocol",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5211-L5214 |
726 | aws/aws-sdk-go | service/applicationdiscoveryservice/api.go | SetExportDataFormat | func (s *StartExportTaskInput) SetExportDataFormat(v []*string) *StartExportTaskInput {
s.ExportDataFormat = v
return s
} | go | func (s *StartExportTaskInput) SetExportDataFormat(v []*string) *StartExportTaskInput {
s.ExportDataFormat = v
return s
} | [
"func",
"(",
"s",
"*",
"StartExportTaskInput",
")",
"SetExportDataFormat",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"StartExportTaskInput",
"{",
"s",
".",
"ExportDataFormat",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetExportDataFormat sets the ExportDataFormat field's value. | [
"SetExportDataFormat",
"sets",
"the",
"ExportDataFormat",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/applicationdiscoveryservice/api.go#L5471-L5474 |
727 | aws/aws-sdk-go | service/cloudformation/waiters.go | WaitUntilChangeSetCreateComplete | func (c *CloudFormation) WaitUntilChangeSetCreateComplete(input *DescribeChangeSetInput) error {
return c.WaitUntilChangeSetCreateCompleteWithContext(aws.BackgroundContext(), input)
} | go | func (c *CloudFormation) WaitUntilChangeSetCreateComplete(input *DescribeChangeSetInput) error {
return c.WaitUntilChangeSetCreateCompleteWithContext(aws.BackgroundContext(), input)
} | [
"func",
"(",
"c",
"*",
"CloudFormation",
")",
"WaitUntilChangeSetCreateComplete",
"(",
"input",
"*",
"DescribeChangeSetInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilChangeSetCreateCompleteWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] | // WaitUntilChangeSetCreateComplete uses the AWS CloudFormation API operation
// DescribeChangeSet to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | [
"WaitUntilChangeSetCreateComplete",
"uses",
"the",
"AWS",
"CloudFormation",
"API",
"operation",
"DescribeChangeSet",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudformation/waiters.go#L16-L18 |
728 | aws/aws-sdk-go | service/cloudformation/waiters.go | WaitUntilStackCreateComplete | func (c *CloudFormation) WaitUntilStackCreateComplete(input *DescribeStacksInput) error {
return c.WaitUntilStackCreateCompleteWithContext(aws.BackgroundContext(), input)
} | go | func (c *CloudFormation) WaitUntilStackCreateComplete(input *DescribeStacksInput) error {
return c.WaitUntilStackCreateCompleteWithContext(aws.BackgroundContext(), input)
} | [
"func",
"(",
"c",
"*",
"CloudFormation",
")",
"WaitUntilStackCreateComplete",
"(",
"input",
"*",
"DescribeStacksInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilStackCreateCompleteWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] | // WaitUntilStackCreateComplete uses the AWS CloudFormation API operation
// DescribeStacks to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | [
"WaitUntilStackCreateComplete",
"uses",
"the",
"AWS",
"CloudFormation",
"API",
"operation",
"DescribeStacks",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudformation/waiters.go#L72-L74 |
729 | aws/aws-sdk-go | service/cloudformation/waiters.go | WaitUntilStackDeleteComplete | func (c *CloudFormation) WaitUntilStackDeleteComplete(input *DescribeStacksInput) error {
return c.WaitUntilStackDeleteCompleteWithContext(aws.BackgroundContext(), input)
} | go | func (c *CloudFormation) WaitUntilStackDeleteComplete(input *DescribeStacksInput) error {
return c.WaitUntilStackDeleteCompleteWithContext(aws.BackgroundContext(), input)
} | [
"func",
"(",
"c",
"*",
"CloudFormation",
")",
"WaitUntilStackDeleteComplete",
"(",
"input",
"*",
"DescribeStacksInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilStackDeleteCompleteWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] | // WaitUntilStackDeleteComplete uses the AWS CloudFormation API operation
// DescribeStacks to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | [
"WaitUntilStackDeleteComplete",
"uses",
"the",
"AWS",
"CloudFormation",
"API",
"operation",
"DescribeStacks",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudformation/waiters.go#L148-L150 |
730 | aws/aws-sdk-go | service/cloudformation/waiters.go | WaitUntilStackExists | func (c *CloudFormation) WaitUntilStackExists(input *DescribeStacksInput) error {
return c.WaitUntilStackExistsWithContext(aws.BackgroundContext(), input)
} | go | func (c *CloudFormation) WaitUntilStackExists(input *DescribeStacksInput) error {
return c.WaitUntilStackExistsWithContext(aws.BackgroundContext(), input)
} | [
"func",
"(",
"c",
"*",
"CloudFormation",
")",
"WaitUntilStackExists",
"(",
"input",
"*",
"DescribeStacksInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilStackExistsWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] | // WaitUntilStackExists uses the AWS CloudFormation API operation
// DescribeStacks to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | [
"WaitUntilStackExists",
"uses",
"the",
"AWS",
"CloudFormation",
"API",
"operation",
"DescribeStacks",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudformation/waiters.go#L224-L226 |
731 | aws/aws-sdk-go | service/cloudformation/waiters.go | WaitUntilStackUpdateComplete | func (c *CloudFormation) WaitUntilStackUpdateComplete(input *DescribeStacksInput) error {
return c.WaitUntilStackUpdateCompleteWithContext(aws.BackgroundContext(), input)
} | go | func (c *CloudFormation) WaitUntilStackUpdateComplete(input *DescribeStacksInput) error {
return c.WaitUntilStackUpdateCompleteWithContext(aws.BackgroundContext(), input)
} | [
"func",
"(",
"c",
"*",
"CloudFormation",
")",
"WaitUntilStackUpdateComplete",
"(",
"input",
"*",
"DescribeStacksInput",
")",
"error",
"{",
"return",
"c",
".",
"WaitUntilStackUpdateCompleteWithContext",
"(",
"aws",
".",
"BackgroundContext",
"(",
")",
",",
"input",
")",
"\n",
"}"
] | // WaitUntilStackUpdateComplete uses the AWS CloudFormation API operation
// DescribeStacks to wait for a condition to be met before returning.
// If the condition is not met within the max attempt window, an error will
// be returned. | [
"WaitUntilStackUpdateComplete",
"uses",
"the",
"AWS",
"CloudFormation",
"API",
"operation",
"DescribeStacks",
"to",
"wait",
"for",
"a",
"condition",
"to",
"be",
"met",
"before",
"returning",
".",
"If",
"the",
"condition",
"is",
"not",
"met",
"within",
"the",
"max",
"attempt",
"window",
"an",
"error",
"will",
"be",
"returned",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/cloudformation/waiters.go#L275-L277 |
732 | aws/aws-sdk-go | service/sagemaker/api.go | SetInputMode | func (s *Channel) SetInputMode(v string) *Channel {
s.InputMode = &v
return s
} | go | func (s *Channel) SetInputMode(v string) *Channel {
s.InputMode = &v
return s
} | [
"func",
"(",
"s",
"*",
"Channel",
")",
"SetInputMode",
"(",
"v",
"string",
")",
"*",
"Channel",
"{",
"s",
".",
"InputMode",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetInputMode sets the InputMode field's value. | [
"SetInputMode",
"sets",
"the",
"InputMode",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L7898-L7901 |
733 | aws/aws-sdk-go | service/sagemaker/api.go | SetRecordWrapperType | func (s *Channel) SetRecordWrapperType(v string) *Channel {
s.RecordWrapperType = &v
return s
} | go | func (s *Channel) SetRecordWrapperType(v string) *Channel {
s.RecordWrapperType = &v
return s
} | [
"func",
"(",
"s",
"*",
"Channel",
")",
"SetRecordWrapperType",
"(",
"v",
"string",
")",
"*",
"Channel",
"{",
"s",
".",
"RecordWrapperType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRecordWrapperType sets the RecordWrapperType field's value. | [
"SetRecordWrapperType",
"sets",
"the",
"RecordWrapperType",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L7904-L7907 |
734 | aws/aws-sdk-go | service/sagemaker/api.go | SetShuffleConfig | func (s *Channel) SetShuffleConfig(v *ShuffleConfig) *Channel {
s.ShuffleConfig = v
return s
} | go | func (s *Channel) SetShuffleConfig(v *ShuffleConfig) *Channel {
s.ShuffleConfig = v
return s
} | [
"func",
"(",
"s",
"*",
"Channel",
")",
"SetShuffleConfig",
"(",
"v",
"*",
"ShuffleConfig",
")",
"*",
"Channel",
"{",
"s",
".",
"ShuffleConfig",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetShuffleConfig sets the ShuffleConfig field's value. | [
"SetShuffleConfig",
"sets",
"the",
"ShuffleConfig",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L7910-L7913 |
735 | aws/aws-sdk-go | service/sagemaker/api.go | SetSupportedCompressionTypes | func (s *ChannelSpecification) SetSupportedCompressionTypes(v []*string) *ChannelSpecification {
s.SupportedCompressionTypes = v
return s
} | go | func (s *ChannelSpecification) SetSupportedCompressionTypes(v []*string) *ChannelSpecification {
s.SupportedCompressionTypes = v
return s
} | [
"func",
"(",
"s",
"*",
"ChannelSpecification",
")",
"SetSupportedCompressionTypes",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ChannelSpecification",
"{",
"s",
".",
"SupportedCompressionTypes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSupportedCompressionTypes sets the SupportedCompressionTypes field's value. | [
"SetSupportedCompressionTypes",
"sets",
"the",
"SupportedCompressionTypes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L8005-L8008 |
736 | aws/aws-sdk-go | service/sagemaker/api.go | SetSupportedInputModes | func (s *ChannelSpecification) SetSupportedInputModes(v []*string) *ChannelSpecification {
s.SupportedInputModes = v
return s
} | go | func (s *ChannelSpecification) SetSupportedInputModes(v []*string) *ChannelSpecification {
s.SupportedInputModes = v
return s
} | [
"func",
"(",
"s",
"*",
"ChannelSpecification",
")",
"SetSupportedInputModes",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ChannelSpecification",
"{",
"s",
".",
"SupportedInputModes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSupportedInputModes sets the SupportedInputModes field's value. | [
"SetSupportedInputModes",
"sets",
"the",
"SupportedInputModes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L8017-L8020 |
737 | aws/aws-sdk-go | service/sagemaker/api.go | SetUserGroup | func (s *CognitoMemberDefinition) SetUserGroup(v string) *CognitoMemberDefinition {
s.UserGroup = &v
return s
} | go | func (s *CognitoMemberDefinition) SetUserGroup(v string) *CognitoMemberDefinition {
s.UserGroup = &v
return s
} | [
"func",
"(",
"s",
"*",
"CognitoMemberDefinition",
")",
"SetUserGroup",
"(",
"v",
"string",
")",
"*",
"CognitoMemberDefinition",
"{",
"s",
".",
"UserGroup",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetUserGroup sets the UserGroup field's value. | [
"SetUserGroup",
"sets",
"the",
"UserGroup",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L8160-L8163 |
738 | aws/aws-sdk-go | service/sagemaker/api.go | SetCompilationTargetDevice | func (s *CompilationJobSummary) SetCompilationTargetDevice(v string) *CompilationJobSummary {
s.CompilationTargetDevice = &v
return s
} | go | func (s *CompilationJobSummary) SetCompilationTargetDevice(v string) *CompilationJobSummary {
s.CompilationTargetDevice = &v
return s
} | [
"func",
"(",
"s",
"*",
"CompilationJobSummary",
")",
"SetCompilationTargetDevice",
"(",
"v",
"string",
")",
"*",
"CompilationJobSummary",
"{",
"s",
".",
"CompilationTargetDevice",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetCompilationTargetDevice sets the CompilationTargetDevice field's value. | [
"SetCompilationTargetDevice",
"sets",
"the",
"CompilationTargetDevice",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L8251-L8254 |
739 | aws/aws-sdk-go | service/sagemaker/api.go | SetSessionExpirationDurationInSeconds | func (s *CreatePresignedNotebookInstanceUrlInput) SetSessionExpirationDurationInSeconds(v int64) *CreatePresignedNotebookInstanceUrlInput {
s.SessionExpirationDurationInSeconds = &v
return s
} | go | func (s *CreatePresignedNotebookInstanceUrlInput) SetSessionExpirationDurationInSeconds(v int64) *CreatePresignedNotebookInstanceUrlInput {
s.SessionExpirationDurationInSeconds = &v
return s
} | [
"func",
"(",
"s",
"*",
"CreatePresignedNotebookInstanceUrlInput",
")",
"SetSessionExpirationDurationInSeconds",
"(",
"v",
"int64",
")",
"*",
"CreatePresignedNotebookInstanceUrlInput",
"{",
"s",
".",
"SessionExpirationDurationInSeconds",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSessionExpirationDurationInSeconds sets the SessionExpirationDurationInSeconds field's value. | [
"SetSessionExpirationDurationInSeconds",
"sets",
"the",
"SessionExpirationDurationInSeconds",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L10288-L10291 |
740 | aws/aws-sdk-go | service/sagemaker/api.go | SetAuthorizedUrl | func (s *CreatePresignedNotebookInstanceUrlOutput) SetAuthorizedUrl(v string) *CreatePresignedNotebookInstanceUrlOutput {
s.AuthorizedUrl = &v
return s
} | go | func (s *CreatePresignedNotebookInstanceUrlOutput) SetAuthorizedUrl(v string) *CreatePresignedNotebookInstanceUrlOutput {
s.AuthorizedUrl = &v
return s
} | [
"func",
"(",
"s",
"*",
"CreatePresignedNotebookInstanceUrlOutput",
")",
"SetAuthorizedUrl",
"(",
"v",
"string",
")",
"*",
"CreatePresignedNotebookInstanceUrlOutput",
"{",
"s",
".",
"AuthorizedUrl",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAuthorizedUrl sets the AuthorizedUrl field's value. | [
"SetAuthorizedUrl",
"sets",
"the",
"AuthorizedUrl",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L10311-L10314 |
741 | aws/aws-sdk-go | service/sagemaker/api.go | SetResolutionTime | func (s *DeployedImage) SetResolutionTime(v time.Time) *DeployedImage {
s.ResolutionTime = &v
return s
} | go | func (s *DeployedImage) SetResolutionTime(v time.Time) *DeployedImage {
s.ResolutionTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"DeployedImage",
")",
"SetResolutionTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"DeployedImage",
"{",
"s",
".",
"ResolutionTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetResolutionTime sets the ResolutionTime field's value. | [
"SetResolutionTime",
"sets",
"the",
"ResolutionTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L11617-L11620 |
742 | aws/aws-sdk-go | service/sagemaker/api.go | SetResolvedImage | func (s *DeployedImage) SetResolvedImage(v string) *DeployedImage {
s.ResolvedImage = &v
return s
} | go | func (s *DeployedImage) SetResolvedImage(v string) *DeployedImage {
s.ResolvedImage = &v
return s
} | [
"func",
"(",
"s",
"*",
"DeployedImage",
")",
"SetResolvedImage",
"(",
"v",
"string",
")",
"*",
"DeployedImage",
"{",
"s",
".",
"ResolvedImage",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetResolvedImage sets the ResolvedImage field's value. | [
"SetResolvedImage",
"sets",
"the",
"ResolvedImage",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L11623-L11626 |
743 | aws/aws-sdk-go | service/sagemaker/api.go | SetSpecifiedImage | func (s *DeployedImage) SetSpecifiedImage(v string) *DeployedImage {
s.SpecifiedImage = &v
return s
} | go | func (s *DeployedImage) SetSpecifiedImage(v string) *DeployedImage {
s.SpecifiedImage = &v
return s
} | [
"func",
"(",
"s",
"*",
"DeployedImage",
")",
"SetSpecifiedImage",
"(",
"v",
"string",
")",
"*",
"DeployedImage",
"{",
"s",
".",
"SpecifiedImage",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSpecifiedImage sets the SpecifiedImage field's value. | [
"SetSpecifiedImage",
"sets",
"the",
"SpecifiedImage",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L11629-L11632 |
744 | aws/aws-sdk-go | service/sagemaker/api.go | SetAlgorithmStatusDetails | func (s *DescribeAlgorithmOutput) SetAlgorithmStatusDetails(v *AlgorithmStatusDetails) *DescribeAlgorithmOutput {
s.AlgorithmStatusDetails = v
return s
} | go | func (s *DescribeAlgorithmOutput) SetAlgorithmStatusDetails(v *AlgorithmStatusDetails) *DescribeAlgorithmOutput {
s.AlgorithmStatusDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeAlgorithmOutput",
")",
"SetAlgorithmStatusDetails",
"(",
"v",
"*",
"AlgorithmStatusDetails",
")",
"*",
"DescribeAlgorithmOutput",
"{",
"s",
".",
"AlgorithmStatusDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAlgorithmStatusDetails sets the AlgorithmStatusDetails field's value. | [
"SetAlgorithmStatusDetails",
"sets",
"the",
"AlgorithmStatusDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L11760-L11763 |
745 | aws/aws-sdk-go | service/sagemaker/api.go | SetBestTrainingJob | func (s *DescribeHyperParameterTuningJobOutput) SetBestTrainingJob(v *HyperParameterTrainingJobSummary) *DescribeHyperParameterTuningJobOutput {
s.BestTrainingJob = v
return s
} | go | func (s *DescribeHyperParameterTuningJobOutput) SetBestTrainingJob(v *HyperParameterTrainingJobSummary) *DescribeHyperParameterTuningJobOutput {
s.BestTrainingJob = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeHyperParameterTuningJobOutput",
")",
"SetBestTrainingJob",
"(",
"v",
"*",
"HyperParameterTrainingJobSummary",
")",
"*",
"DescribeHyperParameterTuningJobOutput",
"{",
"s",
".",
"BestTrainingJob",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetBestTrainingJob sets the BestTrainingJob field's value. | [
"SetBestTrainingJob",
"sets",
"the",
"BestTrainingJob",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L12518-L12521 |
746 | aws/aws-sdk-go | service/sagemaker/api.go | SetOverallBestTrainingJob | func (s *DescribeHyperParameterTuningJobOutput) SetOverallBestTrainingJob(v *HyperParameterTrainingJobSummary) *DescribeHyperParameterTuningJobOutput {
s.OverallBestTrainingJob = v
return s
} | go | func (s *DescribeHyperParameterTuningJobOutput) SetOverallBestTrainingJob(v *HyperParameterTrainingJobSummary) *DescribeHyperParameterTuningJobOutput {
s.OverallBestTrainingJob = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeHyperParameterTuningJobOutput",
")",
"SetOverallBestTrainingJob",
"(",
"v",
"*",
"HyperParameterTrainingJobSummary",
")",
"*",
"DescribeHyperParameterTuningJobOutput",
"{",
"s",
".",
"OverallBestTrainingJob",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetOverallBestTrainingJob sets the OverallBestTrainingJob field's value. | [
"SetOverallBestTrainingJob",
"sets",
"the",
"OverallBestTrainingJob",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L12578-L12581 |
747 | aws/aws-sdk-go | service/sagemaker/api.go | SetModelPackageStatusDetails | func (s *DescribeModelPackageOutput) SetModelPackageStatusDetails(v *ModelPackageStatusDetails) *DescribeModelPackageOutput {
s.ModelPackageStatusDetails = v
return s
} | go | func (s *DescribeModelPackageOutput) SetModelPackageStatusDetails(v *ModelPackageStatusDetails) *DescribeModelPackageOutput {
s.ModelPackageStatusDetails = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeModelPackageOutput",
")",
"SetModelPackageStatusDetails",
"(",
"v",
"*",
"ModelPackageStatusDetails",
")",
"*",
"DescribeModelPackageOutput",
"{",
"s",
".",
"ModelPackageStatusDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetModelPackageStatusDetails sets the ModelPackageStatusDetails field's value. | [
"SetModelPackageStatusDetails",
"sets",
"the",
"ModelPackageStatusDetails",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L13162-L13165 |
748 | aws/aws-sdk-go | service/sagemaker/api.go | SetSubscribedWorkteam | func (s *DescribeSubscribedWorkteamOutput) SetSubscribedWorkteam(v *SubscribedWorkteam) *DescribeSubscribedWorkteamOutput {
s.SubscribedWorkteam = v
return s
} | go | func (s *DescribeSubscribedWorkteamOutput) SetSubscribedWorkteam(v *SubscribedWorkteam) *DescribeSubscribedWorkteamOutput {
s.SubscribedWorkteam = v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeSubscribedWorkteamOutput",
")",
"SetSubscribedWorkteam",
"(",
"v",
"*",
"SubscribedWorkteam",
")",
"*",
"DescribeSubscribedWorkteamOutput",
"{",
"s",
".",
"SubscribedWorkteam",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSubscribedWorkteam sets the SubscribedWorkteam field's value. | [
"SetSubscribedWorkteam",
"sets",
"the",
"SubscribedWorkteam",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L13609-L13612 |
749 | aws/aws-sdk-go | service/sagemaker/api.go | SetTransformStartTime | func (s *DescribeTransformJobOutput) SetTransformStartTime(v time.Time) *DescribeTransformJobOutput {
s.TransformStartTime = &v
return s
} | go | func (s *DescribeTransformJobOutput) SetTransformStartTime(v time.Time) *DescribeTransformJobOutput {
s.TransformStartTime = &v
return s
} | [
"func",
"(",
"s",
"*",
"DescribeTransformJobOutput",
")",
"SetTransformStartTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"DescribeTransformJobOutput",
"{",
"s",
".",
"TransformStartTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTransformStartTime sets the TransformStartTime field's value. | [
"SetTransformStartTime",
"sets",
"the",
"TransformStartTime",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L14210-L14213 |
750 | aws/aws-sdk-go | service/sagemaker/api.go | SetSuggestionQuery | func (s *GetSearchSuggestionsInput) SetSuggestionQuery(v *SuggestionQuery) *GetSearchSuggestionsInput {
s.SuggestionQuery = v
return s
} | go | func (s *GetSearchSuggestionsInput) SetSuggestionQuery(v *SuggestionQuery) *GetSearchSuggestionsInput {
s.SuggestionQuery = v
return s
} | [
"func",
"(",
"s",
"*",
"GetSearchSuggestionsInput",
")",
"SetSuggestionQuery",
"(",
"v",
"*",
"SuggestionQuery",
")",
"*",
"GetSearchSuggestionsInput",
"{",
"s",
".",
"SuggestionQuery",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSuggestionQuery sets the SuggestionQuery field's value. | [
"SetSuggestionQuery",
"sets",
"the",
"SuggestionQuery",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L14720-L14723 |
751 | aws/aws-sdk-go | service/sagemaker/api.go | SetPropertyNameSuggestions | func (s *GetSearchSuggestionsOutput) SetPropertyNameSuggestions(v []*PropertyNameSuggestion) *GetSearchSuggestionsOutput {
s.PropertyNameSuggestions = v
return s
} | go | func (s *GetSearchSuggestionsOutput) SetPropertyNameSuggestions(v []*PropertyNameSuggestion) *GetSearchSuggestionsOutput {
s.PropertyNameSuggestions = v
return s
} | [
"func",
"(",
"s",
"*",
"GetSearchSuggestionsOutput",
")",
"SetPropertyNameSuggestions",
"(",
"v",
"[",
"]",
"*",
"PropertyNameSuggestion",
")",
"*",
"GetSearchSuggestionsOutput",
"{",
"s",
".",
"PropertyNameSuggestions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetPropertyNameSuggestions sets the PropertyNameSuggestions field's value. | [
"SetPropertyNameSuggestions",
"sets",
"the",
"PropertyNameSuggestions",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L14743-L14746 |
752 | aws/aws-sdk-go | service/sagemaker/api.go | SetRepositoryUrl | func (s *GitConfig) SetRepositoryUrl(v string) *GitConfig {
s.RepositoryUrl = &v
return s
} | go | func (s *GitConfig) SetRepositoryUrl(v string) *GitConfig {
s.RepositoryUrl = &v
return s
} | [
"func",
"(",
"s",
"*",
"GitConfig",
")",
"SetRepositoryUrl",
"(",
"v",
"string",
")",
"*",
"GitConfig",
"{",
"s",
".",
"RepositoryUrl",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetRepositoryUrl sets the RepositoryUrl field's value. | [
"SetRepositoryUrl",
"sets",
"the",
"RepositoryUrl",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L14804-L14807 |
753 | aws/aws-sdk-go | service/sagemaker/api.go | SetAnnotationConsolidationConfig | func (s *HumanTaskConfig) SetAnnotationConsolidationConfig(v *AnnotationConsolidationConfig) *HumanTaskConfig {
s.AnnotationConsolidationConfig = v
return s
} | go | func (s *HumanTaskConfig) SetAnnotationConsolidationConfig(v *AnnotationConsolidationConfig) *HumanTaskConfig {
s.AnnotationConsolidationConfig = v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetAnnotationConsolidationConfig",
"(",
"v",
"*",
"AnnotationConsolidationConfig",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"AnnotationConsolidationConfig",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAnnotationConsolidationConfig sets the AnnotationConsolidationConfig field's value. | [
"SetAnnotationConsolidationConfig",
"sets",
"the",
"AnnotationConsolidationConfig",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15050-L15053 |
754 | aws/aws-sdk-go | service/sagemaker/api.go | SetMaxConcurrentTaskCount | func (s *HumanTaskConfig) SetMaxConcurrentTaskCount(v int64) *HumanTaskConfig {
s.MaxConcurrentTaskCount = &v
return s
} | go | func (s *HumanTaskConfig) SetMaxConcurrentTaskCount(v int64) *HumanTaskConfig {
s.MaxConcurrentTaskCount = &v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetMaxConcurrentTaskCount",
"(",
"v",
"int64",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"MaxConcurrentTaskCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMaxConcurrentTaskCount sets the MaxConcurrentTaskCount field's value. | [
"SetMaxConcurrentTaskCount",
"sets",
"the",
"MaxConcurrentTaskCount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15056-L15059 |
755 | aws/aws-sdk-go | service/sagemaker/api.go | SetNumberOfHumanWorkersPerDataObject | func (s *HumanTaskConfig) SetNumberOfHumanWorkersPerDataObject(v int64) *HumanTaskConfig {
s.NumberOfHumanWorkersPerDataObject = &v
return s
} | go | func (s *HumanTaskConfig) SetNumberOfHumanWorkersPerDataObject(v int64) *HumanTaskConfig {
s.NumberOfHumanWorkersPerDataObject = &v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetNumberOfHumanWorkersPerDataObject",
"(",
"v",
"int64",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"NumberOfHumanWorkersPerDataObject",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetNumberOfHumanWorkersPerDataObject sets the NumberOfHumanWorkersPerDataObject field's value. | [
"SetNumberOfHumanWorkersPerDataObject",
"sets",
"the",
"NumberOfHumanWorkersPerDataObject",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15062-L15065 |
756 | aws/aws-sdk-go | service/sagemaker/api.go | SetPublicWorkforceTaskPrice | func (s *HumanTaskConfig) SetPublicWorkforceTaskPrice(v *PublicWorkforceTaskPrice) *HumanTaskConfig {
s.PublicWorkforceTaskPrice = v
return s
} | go | func (s *HumanTaskConfig) SetPublicWorkforceTaskPrice(v *PublicWorkforceTaskPrice) *HumanTaskConfig {
s.PublicWorkforceTaskPrice = v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetPublicWorkforceTaskPrice",
"(",
"v",
"*",
"PublicWorkforceTaskPrice",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"PublicWorkforceTaskPrice",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetPublicWorkforceTaskPrice sets the PublicWorkforceTaskPrice field's value. | [
"SetPublicWorkforceTaskPrice",
"sets",
"the",
"PublicWorkforceTaskPrice",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15074-L15077 |
757 | aws/aws-sdk-go | service/sagemaker/api.go | SetTaskAvailabilityLifetimeInSeconds | func (s *HumanTaskConfig) SetTaskAvailabilityLifetimeInSeconds(v int64) *HumanTaskConfig {
s.TaskAvailabilityLifetimeInSeconds = &v
return s
} | go | func (s *HumanTaskConfig) SetTaskAvailabilityLifetimeInSeconds(v int64) *HumanTaskConfig {
s.TaskAvailabilityLifetimeInSeconds = &v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetTaskAvailabilityLifetimeInSeconds",
"(",
"v",
"int64",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"TaskAvailabilityLifetimeInSeconds",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTaskAvailabilityLifetimeInSeconds sets the TaskAvailabilityLifetimeInSeconds field's value. | [
"SetTaskAvailabilityLifetimeInSeconds",
"sets",
"the",
"TaskAvailabilityLifetimeInSeconds",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15080-L15083 |
758 | aws/aws-sdk-go | service/sagemaker/api.go | SetTaskDescription | func (s *HumanTaskConfig) SetTaskDescription(v string) *HumanTaskConfig {
s.TaskDescription = &v
return s
} | go | func (s *HumanTaskConfig) SetTaskDescription(v string) *HumanTaskConfig {
s.TaskDescription = &v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetTaskDescription",
"(",
"v",
"string",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"TaskDescription",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTaskDescription sets the TaskDescription field's value. | [
"SetTaskDescription",
"sets",
"the",
"TaskDescription",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15086-L15089 |
759 | aws/aws-sdk-go | service/sagemaker/api.go | SetTaskKeywords | func (s *HumanTaskConfig) SetTaskKeywords(v []*string) *HumanTaskConfig {
s.TaskKeywords = v
return s
} | go | func (s *HumanTaskConfig) SetTaskKeywords(v []*string) *HumanTaskConfig {
s.TaskKeywords = v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetTaskKeywords",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"TaskKeywords",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTaskKeywords sets the TaskKeywords field's value. | [
"SetTaskKeywords",
"sets",
"the",
"TaskKeywords",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15092-L15095 |
760 | aws/aws-sdk-go | service/sagemaker/api.go | SetTaskTimeLimitInSeconds | func (s *HumanTaskConfig) SetTaskTimeLimitInSeconds(v int64) *HumanTaskConfig {
s.TaskTimeLimitInSeconds = &v
return s
} | go | func (s *HumanTaskConfig) SetTaskTimeLimitInSeconds(v int64) *HumanTaskConfig {
s.TaskTimeLimitInSeconds = &v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetTaskTimeLimitInSeconds",
"(",
"v",
"int64",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"TaskTimeLimitInSeconds",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTaskTimeLimitInSeconds sets the TaskTimeLimitInSeconds field's value. | [
"SetTaskTimeLimitInSeconds",
"sets",
"the",
"TaskTimeLimitInSeconds",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15098-L15101 |
761 | aws/aws-sdk-go | service/sagemaker/api.go | SetTaskTitle | func (s *HumanTaskConfig) SetTaskTitle(v string) *HumanTaskConfig {
s.TaskTitle = &v
return s
} | go | func (s *HumanTaskConfig) SetTaskTitle(v string) *HumanTaskConfig {
s.TaskTitle = &v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetTaskTitle",
"(",
"v",
"string",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"TaskTitle",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTaskTitle sets the TaskTitle field's value. | [
"SetTaskTitle",
"sets",
"the",
"TaskTitle",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15104-L15107 |
762 | aws/aws-sdk-go | service/sagemaker/api.go | SetUiConfig | func (s *HumanTaskConfig) SetUiConfig(v *UiConfig) *HumanTaskConfig {
s.UiConfig = v
return s
} | go | func (s *HumanTaskConfig) SetUiConfig(v *UiConfig) *HumanTaskConfig {
s.UiConfig = v
return s
} | [
"func",
"(",
"s",
"*",
"HumanTaskConfig",
")",
"SetUiConfig",
"(",
"v",
"*",
"UiConfig",
")",
"*",
"HumanTaskConfig",
"{",
"s",
".",
"UiConfig",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetUiConfig sets the UiConfig field's value. | [
"SetUiConfig",
"sets",
"the",
"UiConfig",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15110-L15113 |
763 | aws/aws-sdk-go | service/sagemaker/api.go | SetIsTunable | func (s *HyperParameterSpecification) SetIsTunable(v bool) *HyperParameterSpecification {
s.IsTunable = &v
return s
} | go | func (s *HyperParameterSpecification) SetIsTunable(v bool) *HyperParameterSpecification {
s.IsTunable = &v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterSpecification",
")",
"SetIsTunable",
"(",
"v",
"bool",
")",
"*",
"HyperParameterSpecification",
"{",
"s",
".",
"IsTunable",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetIsTunable sets the IsTunable field's value. | [
"SetIsTunable",
"sets",
"the",
"IsTunable",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15302-L15305 |
764 | aws/aws-sdk-go | service/sagemaker/api.go | SetStaticHyperParameters | func (s *HyperParameterTrainingJobDefinition) SetStaticHyperParameters(v map[string]*string) *HyperParameterTrainingJobDefinition {
s.StaticHyperParameters = v
return s
} | go | func (s *HyperParameterTrainingJobDefinition) SetStaticHyperParameters(v map[string]*string) *HyperParameterTrainingJobDefinition {
s.StaticHyperParameters = v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTrainingJobDefinition",
")",
"SetStaticHyperParameters",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"HyperParameterTrainingJobDefinition",
"{",
"s",
".",
"StaticHyperParameters",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetStaticHyperParameters sets the StaticHyperParameters field's value. | [
"SetStaticHyperParameters",
"sets",
"the",
"StaticHyperParameters",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15524-L15527 |
765 | aws/aws-sdk-go | service/sagemaker/api.go | SetFinalHyperParameterTuningJobObjectiveMetric | func (s *HyperParameterTrainingJobSummary) SetFinalHyperParameterTuningJobObjectiveMetric(v *FinalHyperParameterTuningJobObjectiveMetric) *HyperParameterTrainingJobSummary {
s.FinalHyperParameterTuningJobObjectiveMetric = v
return s
} | go | func (s *HyperParameterTrainingJobSummary) SetFinalHyperParameterTuningJobObjectiveMetric(v *FinalHyperParameterTuningJobObjectiveMetric) *HyperParameterTrainingJobSummary {
s.FinalHyperParameterTuningJobObjectiveMetric = v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTrainingJobSummary",
")",
"SetFinalHyperParameterTuningJobObjectiveMetric",
"(",
"v",
"*",
"FinalHyperParameterTuningJobObjectiveMetric",
")",
"*",
"HyperParameterTrainingJobSummary",
"{",
"s",
".",
"FinalHyperParameterTuningJobObjectiveMetric",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetFinalHyperParameterTuningJobObjectiveMetric sets the FinalHyperParameterTuningJobObjectiveMetric field's value. | [
"SetFinalHyperParameterTuningJobObjectiveMetric",
"sets",
"the",
"FinalHyperParameterTuningJobObjectiveMetric",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15629-L15632 |
766 | aws/aws-sdk-go | service/sagemaker/api.go | SetObjectiveStatus | func (s *HyperParameterTrainingJobSummary) SetObjectiveStatus(v string) *HyperParameterTrainingJobSummary {
s.ObjectiveStatus = &v
return s
} | go | func (s *HyperParameterTrainingJobSummary) SetObjectiveStatus(v string) *HyperParameterTrainingJobSummary {
s.ObjectiveStatus = &v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTrainingJobSummary",
")",
"SetObjectiveStatus",
"(",
"v",
"string",
")",
"*",
"HyperParameterTrainingJobSummary",
"{",
"s",
".",
"ObjectiveStatus",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetObjectiveStatus sets the ObjectiveStatus field's value. | [
"SetObjectiveStatus",
"sets",
"the",
"ObjectiveStatus",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15635-L15638 |
767 | aws/aws-sdk-go | service/sagemaker/api.go | SetTunedHyperParameters | func (s *HyperParameterTrainingJobSummary) SetTunedHyperParameters(v map[string]*string) *HyperParameterTrainingJobSummary {
s.TunedHyperParameters = v
return s
} | go | func (s *HyperParameterTrainingJobSummary) SetTunedHyperParameters(v map[string]*string) *HyperParameterTrainingJobSummary {
s.TunedHyperParameters = v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTrainingJobSummary",
")",
"SetTunedHyperParameters",
"(",
"v",
"map",
"[",
"string",
"]",
"*",
"string",
")",
"*",
"HyperParameterTrainingJobSummary",
"{",
"s",
".",
"TunedHyperParameters",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTunedHyperParameters sets the TunedHyperParameters field's value. | [
"SetTunedHyperParameters",
"sets",
"the",
"TunedHyperParameters",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15671-L15674 |
768 | aws/aws-sdk-go | service/sagemaker/api.go | SetTuningJobName | func (s *HyperParameterTrainingJobSummary) SetTuningJobName(v string) *HyperParameterTrainingJobSummary {
s.TuningJobName = &v
return s
} | go | func (s *HyperParameterTrainingJobSummary) SetTuningJobName(v string) *HyperParameterTrainingJobSummary {
s.TuningJobName = &v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTrainingJobSummary",
")",
"SetTuningJobName",
"(",
"v",
"string",
")",
"*",
"HyperParameterTrainingJobSummary",
"{",
"s",
".",
"TuningJobName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTuningJobName sets the TuningJobName field's value. | [
"SetTuningJobName",
"sets",
"the",
"TuningJobName",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15677-L15680 |
769 | aws/aws-sdk-go | service/sagemaker/api.go | SetHyperParameterTuningJobObjective | func (s *HyperParameterTuningJobConfig) SetHyperParameterTuningJobObjective(v *HyperParameterTuningJobObjective) *HyperParameterTuningJobConfig {
s.HyperParameterTuningJobObjective = v
return s
} | go | func (s *HyperParameterTuningJobConfig) SetHyperParameterTuningJobObjective(v *HyperParameterTuningJobObjective) *HyperParameterTuningJobConfig {
s.HyperParameterTuningJobObjective = v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTuningJobConfig",
")",
"SetHyperParameterTuningJobObjective",
"(",
"v",
"*",
"HyperParameterTuningJobObjective",
")",
"*",
"HyperParameterTuningJobConfig",
"{",
"s",
".",
"HyperParameterTuningJobObjective",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetHyperParameterTuningJobObjective sets the HyperParameterTuningJobObjective field's value. | [
"SetHyperParameterTuningJobObjective",
"sets",
"the",
"HyperParameterTuningJobObjective",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15774-L15777 |
770 | aws/aws-sdk-go | service/sagemaker/api.go | SetParameterRanges | func (s *HyperParameterTuningJobConfig) SetParameterRanges(v *ParameterRanges) *HyperParameterTuningJobConfig {
s.ParameterRanges = v
return s
} | go | func (s *HyperParameterTuningJobConfig) SetParameterRanges(v *ParameterRanges) *HyperParameterTuningJobConfig {
s.ParameterRanges = v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTuningJobConfig",
")",
"SetParameterRanges",
"(",
"v",
"*",
"ParameterRanges",
")",
"*",
"HyperParameterTuningJobConfig",
"{",
"s",
".",
"ParameterRanges",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetParameterRanges sets the ParameterRanges field's value. | [
"SetParameterRanges",
"sets",
"the",
"ParameterRanges",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15780-L15783 |
771 | aws/aws-sdk-go | service/sagemaker/api.go | SetTrainingJobEarlyStoppingType | func (s *HyperParameterTuningJobConfig) SetTrainingJobEarlyStoppingType(v string) *HyperParameterTuningJobConfig {
s.TrainingJobEarlyStoppingType = &v
return s
} | go | func (s *HyperParameterTuningJobConfig) SetTrainingJobEarlyStoppingType(v string) *HyperParameterTuningJobConfig {
s.TrainingJobEarlyStoppingType = &v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTuningJobConfig",
")",
"SetTrainingJobEarlyStoppingType",
"(",
"v",
"string",
")",
"*",
"HyperParameterTuningJobConfig",
"{",
"s",
".",
"TrainingJobEarlyStoppingType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTrainingJobEarlyStoppingType sets the TrainingJobEarlyStoppingType field's value. | [
"SetTrainingJobEarlyStoppingType",
"sets",
"the",
"TrainingJobEarlyStoppingType",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L15798-L15801 |
772 | aws/aws-sdk-go | service/sagemaker/api.go | SetParentHyperParameterTuningJobs | func (s *HyperParameterTuningJobWarmStartConfig) SetParentHyperParameterTuningJobs(v []*ParentHyperParameterTuningJob) *HyperParameterTuningJobWarmStartConfig {
s.ParentHyperParameterTuningJobs = v
return s
} | go | func (s *HyperParameterTuningJobWarmStartConfig) SetParentHyperParameterTuningJobs(v []*ParentHyperParameterTuningJob) *HyperParameterTuningJobWarmStartConfig {
s.ParentHyperParameterTuningJobs = v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTuningJobWarmStartConfig",
")",
"SetParentHyperParameterTuningJobs",
"(",
"v",
"[",
"]",
"*",
"ParentHyperParameterTuningJob",
")",
"*",
"HyperParameterTuningJobWarmStartConfig",
"{",
"s",
".",
"ParentHyperParameterTuningJobs",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetParentHyperParameterTuningJobs sets the ParentHyperParameterTuningJobs field's value. | [
"SetParentHyperParameterTuningJobs",
"sets",
"the",
"ParentHyperParameterTuningJobs",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16082-L16085 |
773 | aws/aws-sdk-go | service/sagemaker/api.go | SetWarmStartType | func (s *HyperParameterTuningJobWarmStartConfig) SetWarmStartType(v string) *HyperParameterTuningJobWarmStartConfig {
s.WarmStartType = &v
return s
} | go | func (s *HyperParameterTuningJobWarmStartConfig) SetWarmStartType(v string) *HyperParameterTuningJobWarmStartConfig {
s.WarmStartType = &v
return s
} | [
"func",
"(",
"s",
"*",
"HyperParameterTuningJobWarmStartConfig",
")",
"SetWarmStartType",
"(",
"v",
"string",
")",
"*",
"HyperParameterTuningJobWarmStartConfig",
"{",
"s",
".",
"WarmStartType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetWarmStartType sets the WarmStartType field's value. | [
"SetWarmStartType",
"sets",
"the",
"WarmStartType",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16088-L16091 |
774 | aws/aws-sdk-go | service/sagemaker/api.go | SetSupportedRealtimeInferenceInstanceTypes | func (s *InferenceSpecification) SetSupportedRealtimeInferenceInstanceTypes(v []*string) *InferenceSpecification {
s.SupportedRealtimeInferenceInstanceTypes = v
return s
} | go | func (s *InferenceSpecification) SetSupportedRealtimeInferenceInstanceTypes(v []*string) *InferenceSpecification {
s.SupportedRealtimeInferenceInstanceTypes = v
return s
} | [
"func",
"(",
"s",
"*",
"InferenceSpecification",
")",
"SetSupportedRealtimeInferenceInstanceTypes",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"InferenceSpecification",
"{",
"s",
".",
"SupportedRealtimeInferenceInstanceTypes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSupportedRealtimeInferenceInstanceTypes sets the SupportedRealtimeInferenceInstanceTypes field's value. | [
"SetSupportedRealtimeInferenceInstanceTypes",
"sets",
"the",
"SupportedRealtimeInferenceInstanceTypes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16189-L16192 |
775 | aws/aws-sdk-go | service/sagemaker/api.go | SetSupportedResponseMIMETypes | func (s *InferenceSpecification) SetSupportedResponseMIMETypes(v []*string) *InferenceSpecification {
s.SupportedResponseMIMETypes = v
return s
} | go | func (s *InferenceSpecification) SetSupportedResponseMIMETypes(v []*string) *InferenceSpecification {
s.SupportedResponseMIMETypes = v
return s
} | [
"func",
"(",
"s",
"*",
"InferenceSpecification",
")",
"SetSupportedResponseMIMETypes",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"InferenceSpecification",
"{",
"s",
".",
"SupportedResponseMIMETypes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSupportedResponseMIMETypes sets the SupportedResponseMIMETypes field's value. | [
"SetSupportedResponseMIMETypes",
"sets",
"the",
"SupportedResponseMIMETypes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16195-L16198 |
776 | aws/aws-sdk-go | service/sagemaker/api.go | SetSupportedTransformInstanceTypes | func (s *InferenceSpecification) SetSupportedTransformInstanceTypes(v []*string) *InferenceSpecification {
s.SupportedTransformInstanceTypes = v
return s
} | go | func (s *InferenceSpecification) SetSupportedTransformInstanceTypes(v []*string) *InferenceSpecification {
s.SupportedTransformInstanceTypes = v
return s
} | [
"func",
"(",
"s",
"*",
"InferenceSpecification",
")",
"SetSupportedTransformInstanceTypes",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"InferenceSpecification",
"{",
"s",
".",
"SupportedTransformInstanceTypes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetSupportedTransformInstanceTypes sets the SupportedTransformInstanceTypes field's value. | [
"SetSupportedTransformInstanceTypes",
"sets",
"the",
"SupportedTransformInstanceTypes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16201-L16204 |
777 | aws/aws-sdk-go | service/sagemaker/api.go | SetDataInputConfig | func (s *InputConfig) SetDataInputConfig(v string) *InputConfig {
s.DataInputConfig = &v
return s
} | go | func (s *InputConfig) SetDataInputConfig(v string) *InputConfig {
s.DataInputConfig = &v
return s
} | [
"func",
"(",
"s",
"*",
"InputConfig",
")",
"SetDataInputConfig",
"(",
"v",
"string",
")",
"*",
"InputConfig",
"{",
"s",
".",
"DataInputConfig",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDataInputConfig sets the DataInputConfig field's value. | [
"SetDataInputConfig",
"sets",
"the",
"DataInputConfig",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16321-L16324 |
778 | aws/aws-sdk-go | service/sagemaker/api.go | SetFailedNonRetryableError | func (s *LabelCounters) SetFailedNonRetryableError(v int64) *LabelCounters {
s.FailedNonRetryableError = &v
return s
} | go | func (s *LabelCounters) SetFailedNonRetryableError(v int64) *LabelCounters {
s.FailedNonRetryableError = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelCounters",
")",
"SetFailedNonRetryableError",
"(",
"v",
"int64",
")",
"*",
"LabelCounters",
"{",
"s",
".",
"FailedNonRetryableError",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetFailedNonRetryableError sets the FailedNonRetryableError field's value. | [
"SetFailedNonRetryableError",
"sets",
"the",
"FailedNonRetryableError",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16514-L16517 |
779 | aws/aws-sdk-go | service/sagemaker/api.go | SetMachineLabeled | func (s *LabelCounters) SetMachineLabeled(v int64) *LabelCounters {
s.MachineLabeled = &v
return s
} | go | func (s *LabelCounters) SetMachineLabeled(v int64) *LabelCounters {
s.MachineLabeled = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelCounters",
")",
"SetMachineLabeled",
"(",
"v",
"int64",
")",
"*",
"LabelCounters",
"{",
"s",
".",
"MachineLabeled",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMachineLabeled sets the MachineLabeled field's value. | [
"SetMachineLabeled",
"sets",
"the",
"MachineLabeled",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16526-L16529 |
780 | aws/aws-sdk-go | service/sagemaker/api.go | SetTotalLabeled | func (s *LabelCounters) SetTotalLabeled(v int64) *LabelCounters {
s.TotalLabeled = &v
return s
} | go | func (s *LabelCounters) SetTotalLabeled(v int64) *LabelCounters {
s.TotalLabeled = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelCounters",
")",
"SetTotalLabeled",
"(",
"v",
"int64",
")",
"*",
"LabelCounters",
"{",
"s",
".",
"TotalLabeled",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetTotalLabeled sets the TotalLabeled field's value. | [
"SetTotalLabeled",
"sets",
"the",
"TotalLabeled",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16532-L16535 |
781 | aws/aws-sdk-go | service/sagemaker/api.go | SetUnlabeled | func (s *LabelCounters) SetUnlabeled(v int64) *LabelCounters {
s.Unlabeled = &v
return s
} | go | func (s *LabelCounters) SetUnlabeled(v int64) *LabelCounters {
s.Unlabeled = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelCounters",
")",
"SetUnlabeled",
"(",
"v",
"int64",
")",
"*",
"LabelCounters",
"{",
"s",
".",
"Unlabeled",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetUnlabeled sets the Unlabeled field's value. | [
"SetUnlabeled",
"sets",
"the",
"Unlabeled",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16538-L16541 |
782 | aws/aws-sdk-go | service/sagemaker/api.go | SetPendingHuman | func (s *LabelCountersForWorkteam) SetPendingHuman(v int64) *LabelCountersForWorkteam {
s.PendingHuman = &v
return s
} | go | func (s *LabelCountersForWorkteam) SetPendingHuman(v int64) *LabelCountersForWorkteam {
s.PendingHuman = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelCountersForWorkteam",
")",
"SetPendingHuman",
"(",
"v",
"int64",
")",
"*",
"LabelCountersForWorkteam",
"{",
"s",
".",
"PendingHuman",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetPendingHuman sets the PendingHuman field's value. | [
"SetPendingHuman",
"sets",
"the",
"PendingHuman",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16574-L16577 |
783 | aws/aws-sdk-go | service/sagemaker/api.go | SetInitialActiveLearningModelArn | func (s *LabelingJobAlgorithmsConfig) SetInitialActiveLearningModelArn(v string) *LabelingJobAlgorithmsConfig {
s.InitialActiveLearningModelArn = &v
return s
} | go | func (s *LabelingJobAlgorithmsConfig) SetInitialActiveLearningModelArn(v string) *LabelingJobAlgorithmsConfig {
s.InitialActiveLearningModelArn = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobAlgorithmsConfig",
")",
"SetInitialActiveLearningModelArn",
"(",
"v",
"string",
")",
"*",
"LabelingJobAlgorithmsConfig",
"{",
"s",
".",
"InitialActiveLearningModelArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetInitialActiveLearningModelArn sets the InitialActiveLearningModelArn field's value. | [
"SetInitialActiveLearningModelArn",
"sets",
"the",
"InitialActiveLearningModelArn",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16645-L16648 |
784 | aws/aws-sdk-go | service/sagemaker/api.go | SetLabelingJobAlgorithmSpecificationArn | func (s *LabelingJobAlgorithmsConfig) SetLabelingJobAlgorithmSpecificationArn(v string) *LabelingJobAlgorithmsConfig {
s.LabelingJobAlgorithmSpecificationArn = &v
return s
} | go | func (s *LabelingJobAlgorithmsConfig) SetLabelingJobAlgorithmSpecificationArn(v string) *LabelingJobAlgorithmsConfig {
s.LabelingJobAlgorithmSpecificationArn = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobAlgorithmsConfig",
")",
"SetLabelingJobAlgorithmSpecificationArn",
"(",
"v",
"string",
")",
"*",
"LabelingJobAlgorithmsConfig",
"{",
"s",
".",
"LabelingJobAlgorithmSpecificationArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetLabelingJobAlgorithmSpecificationArn sets the LabelingJobAlgorithmSpecificationArn field's value. | [
"SetLabelingJobAlgorithmSpecificationArn",
"sets",
"the",
"LabelingJobAlgorithmSpecificationArn",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16651-L16654 |
785 | aws/aws-sdk-go | service/sagemaker/api.go | SetLabelingJobResourceConfig | func (s *LabelingJobAlgorithmsConfig) SetLabelingJobResourceConfig(v *LabelingJobResourceConfig) *LabelingJobAlgorithmsConfig {
s.LabelingJobResourceConfig = v
return s
} | go | func (s *LabelingJobAlgorithmsConfig) SetLabelingJobResourceConfig(v *LabelingJobResourceConfig) *LabelingJobAlgorithmsConfig {
s.LabelingJobResourceConfig = v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobAlgorithmsConfig",
")",
"SetLabelingJobResourceConfig",
"(",
"v",
"*",
"LabelingJobResourceConfig",
")",
"*",
"LabelingJobAlgorithmsConfig",
"{",
"s",
".",
"LabelingJobResourceConfig",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetLabelingJobResourceConfig sets the LabelingJobResourceConfig field's value. | [
"SetLabelingJobResourceConfig",
"sets",
"the",
"LabelingJobResourceConfig",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16657-L16660 |
786 | aws/aws-sdk-go | service/sagemaker/api.go | SetContentClassifiers | func (s *LabelingJobDataAttributes) SetContentClassifiers(v []*string) *LabelingJobDataAttributes {
s.ContentClassifiers = v
return s
} | go | func (s *LabelingJobDataAttributes) SetContentClassifiers(v []*string) *LabelingJobDataAttributes {
s.ContentClassifiers = v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobDataAttributes",
")",
"SetContentClassifiers",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"LabelingJobDataAttributes",
"{",
"s",
".",
"ContentClassifiers",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetContentClassifiers sets the ContentClassifiers field's value. | [
"SetContentClassifiers",
"sets",
"the",
"ContentClassifiers",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16684-L16687 |
787 | aws/aws-sdk-go | service/sagemaker/api.go | SetWorkRequesterAccountId | func (s *LabelingJobForWorkteamSummary) SetWorkRequesterAccountId(v string) *LabelingJobForWorkteamSummary {
s.WorkRequesterAccountId = &v
return s
} | go | func (s *LabelingJobForWorkteamSummary) SetWorkRequesterAccountId(v string) *LabelingJobForWorkteamSummary {
s.WorkRequesterAccountId = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobForWorkteamSummary",
")",
"SetWorkRequesterAccountId",
"(",
"v",
"string",
")",
"*",
"LabelingJobForWorkteamSummary",
"{",
"s",
".",
"WorkRequesterAccountId",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetWorkRequesterAccountId sets the WorkRequesterAccountId field's value. | [
"SetWorkRequesterAccountId",
"sets",
"the",
"WorkRequesterAccountId",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16793-L16796 |
788 | aws/aws-sdk-go | service/sagemaker/api.go | SetDataAttributes | func (s *LabelingJobInputConfig) SetDataAttributes(v *LabelingJobDataAttributes) *LabelingJobInputConfig {
s.DataAttributes = v
return s
} | go | func (s *LabelingJobInputConfig) SetDataAttributes(v *LabelingJobDataAttributes) *LabelingJobInputConfig {
s.DataAttributes = v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobInputConfig",
")",
"SetDataAttributes",
"(",
"v",
"*",
"LabelingJobDataAttributes",
")",
"*",
"LabelingJobInputConfig",
"{",
"s",
".",
"DataAttributes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetDataAttributes sets the DataAttributes field's value. | [
"SetDataAttributes",
"sets",
"the",
"DataAttributes",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16840-L16843 |
789 | aws/aws-sdk-go | service/sagemaker/api.go | SetFinalActiveLearningModelArn | func (s *LabelingJobOutput) SetFinalActiveLearningModelArn(v string) *LabelingJobOutput {
s.FinalActiveLearningModelArn = &v
return s
} | go | func (s *LabelingJobOutput) SetFinalActiveLearningModelArn(v string) *LabelingJobOutput {
s.FinalActiveLearningModelArn = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobOutput",
")",
"SetFinalActiveLearningModelArn",
"(",
"v",
"string",
")",
"*",
"LabelingJobOutput",
"{",
"s",
".",
"FinalActiveLearningModelArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetFinalActiveLearningModelArn sets the FinalActiveLearningModelArn field's value. | [
"SetFinalActiveLearningModelArn",
"sets",
"the",
"FinalActiveLearningModelArn",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16876-L16879 |
790 | aws/aws-sdk-go | service/sagemaker/api.go | SetOutputDatasetS3Uri | func (s *LabelingJobOutput) SetOutputDatasetS3Uri(v string) *LabelingJobOutput {
s.OutputDatasetS3Uri = &v
return s
} | go | func (s *LabelingJobOutput) SetOutputDatasetS3Uri(v string) *LabelingJobOutput {
s.OutputDatasetS3Uri = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobOutput",
")",
"SetOutputDatasetS3Uri",
"(",
"v",
"string",
")",
"*",
"LabelingJobOutput",
"{",
"s",
".",
"OutputDatasetS3Uri",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetOutputDatasetS3Uri sets the OutputDatasetS3Uri field's value. | [
"SetOutputDatasetS3Uri",
"sets",
"the",
"OutputDatasetS3Uri",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16882-L16885 |
791 | aws/aws-sdk-go | service/sagemaker/api.go | SetManifestS3Uri | func (s *LabelingJobS3DataSource) SetManifestS3Uri(v string) *LabelingJobS3DataSource {
s.ManifestS3Uri = &v
return s
} | go | func (s *LabelingJobS3DataSource) SetManifestS3Uri(v string) *LabelingJobS3DataSource {
s.ManifestS3Uri = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobS3DataSource",
")",
"SetManifestS3Uri",
"(",
"v",
"string",
")",
"*",
"LabelingJobS3DataSource",
"{",
"s",
".",
"ManifestS3Uri",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetManifestS3Uri sets the ManifestS3Uri field's value. | [
"SetManifestS3Uri",
"sets",
"the",
"ManifestS3Uri",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L16996-L16999 |
792 | aws/aws-sdk-go | service/sagemaker/api.go | SetMaxHumanLabeledObjectCount | func (s *LabelingJobStoppingConditions) SetMaxHumanLabeledObjectCount(v int64) *LabelingJobStoppingConditions {
s.MaxHumanLabeledObjectCount = &v
return s
} | go | func (s *LabelingJobStoppingConditions) SetMaxHumanLabeledObjectCount(v int64) *LabelingJobStoppingConditions {
s.MaxHumanLabeledObjectCount = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobStoppingConditions",
")",
"SetMaxHumanLabeledObjectCount",
"(",
"v",
"int64",
")",
"*",
"LabelingJobStoppingConditions",
"{",
"s",
".",
"MaxHumanLabeledObjectCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMaxHumanLabeledObjectCount sets the MaxHumanLabeledObjectCount field's value. | [
"SetMaxHumanLabeledObjectCount",
"sets",
"the",
"MaxHumanLabeledObjectCount",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L17041-L17044 |
793 | aws/aws-sdk-go | service/sagemaker/api.go | SetMaxPercentageOfInputDatasetLabeled | func (s *LabelingJobStoppingConditions) SetMaxPercentageOfInputDatasetLabeled(v int64) *LabelingJobStoppingConditions {
s.MaxPercentageOfInputDatasetLabeled = &v
return s
} | go | func (s *LabelingJobStoppingConditions) SetMaxPercentageOfInputDatasetLabeled(v int64) *LabelingJobStoppingConditions {
s.MaxPercentageOfInputDatasetLabeled = &v
return s
} | [
"func",
"(",
"s",
"*",
"LabelingJobStoppingConditions",
")",
"SetMaxPercentageOfInputDatasetLabeled",
"(",
"v",
"int64",
")",
"*",
"LabelingJobStoppingConditions",
"{",
"s",
".",
"MaxPercentageOfInputDatasetLabeled",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetMaxPercentageOfInputDatasetLabeled sets the MaxPercentageOfInputDatasetLabeled field's value. | [
"SetMaxPercentageOfInputDatasetLabeled",
"sets",
"the",
"MaxPercentageOfInputDatasetLabeled",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L17047-L17050 |
794 | aws/aws-sdk-go | service/sagemaker/api.go | SetAlgorithmSummaryList | func (s *ListAlgorithmsOutput) SetAlgorithmSummaryList(v []*AlgorithmSummary) *ListAlgorithmsOutput {
s.AlgorithmSummaryList = v
return s
} | go | func (s *ListAlgorithmsOutput) SetAlgorithmSummaryList(v []*AlgorithmSummary) *ListAlgorithmsOutput {
s.AlgorithmSummaryList = v
return s
} | [
"func",
"(",
"s",
"*",
"ListAlgorithmsOutput",
")",
"SetAlgorithmSummaryList",
"(",
"v",
"[",
"]",
"*",
"AlgorithmSummary",
")",
"*",
"ListAlgorithmsOutput",
"{",
"s",
".",
"AlgorithmSummaryList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetAlgorithmSummaryList sets the AlgorithmSummaryList field's value. | [
"SetAlgorithmSummaryList",
"sets",
"the",
"AlgorithmSummaryList",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L17312-L17315 |
795 | aws/aws-sdk-go | service/sagemaker/api.go | SetCodeRepositorySummaryList | func (s *ListCodeRepositoriesOutput) SetCodeRepositorySummaryList(v []*CodeRepositorySummary) *ListCodeRepositoriesOutput {
s.CodeRepositorySummaryList = v
return s
} | go | func (s *ListCodeRepositoriesOutput) SetCodeRepositorySummaryList(v []*CodeRepositorySummary) *ListCodeRepositoriesOutput {
s.CodeRepositorySummaryList = v
return s
} | [
"func",
"(",
"s",
"*",
"ListCodeRepositoriesOutput",
")",
"SetCodeRepositorySummaryList",
"(",
"v",
"[",
"]",
"*",
"CodeRepositorySummary",
")",
"*",
"ListCodeRepositoriesOutput",
"{",
"s",
".",
"CodeRepositorySummaryList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetCodeRepositorySummaryList sets the CodeRepositorySummaryList field's value. | [
"SetCodeRepositorySummaryList",
"sets",
"the",
"CodeRepositorySummaryList",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L17476-L17479 |
796 | aws/aws-sdk-go | service/sagemaker/api.go | SetCompilationJobSummaries | func (s *ListCompilationJobsOutput) SetCompilationJobSummaries(v []*CompilationJobSummary) *ListCompilationJobsOutput {
s.CompilationJobSummaries = v
return s
} | go | func (s *ListCompilationJobsOutput) SetCompilationJobSummaries(v []*CompilationJobSummary) *ListCompilationJobsOutput {
s.CompilationJobSummaries = v
return s
} | [
"func",
"(",
"s",
"*",
"ListCompilationJobsOutput",
")",
"SetCompilationJobSummaries",
"(",
"v",
"[",
"]",
"*",
"CompilationJobSummary",
")",
"*",
"ListCompilationJobsOutput",
"{",
"s",
".",
"CompilationJobSummaries",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetCompilationJobSummaries sets the CompilationJobSummaries field's value. | [
"SetCompilationJobSummaries",
"sets",
"the",
"CompilationJobSummaries",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L17638-L17641 |
797 | aws/aws-sdk-go | service/sagemaker/api.go | SetEndpointConfigs | func (s *ListEndpointConfigsOutput) SetEndpointConfigs(v []*EndpointConfigSummary) *ListEndpointConfigsOutput {
s.EndpointConfigs = v
return s
} | go | func (s *ListEndpointConfigsOutput) SetEndpointConfigs(v []*EndpointConfigSummary) *ListEndpointConfigsOutput {
s.EndpointConfigs = v
return s
} | [
"func",
"(",
"s",
"*",
"ListEndpointConfigsOutput",
")",
"SetEndpointConfigs",
"(",
"v",
"[",
"]",
"*",
"EndpointConfigSummary",
")",
"*",
"ListEndpointConfigsOutput",
"{",
"s",
".",
"EndpointConfigs",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetEndpointConfigs sets the EndpointConfigs field's value. | [
"SetEndpointConfigs",
"sets",
"the",
"EndpointConfigs",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L17768-L17771 |
798 | aws/aws-sdk-go | service/sagemaker/api.go | SetHyperParameterTuningJobSummaries | func (s *ListHyperParameterTuningJobsOutput) SetHyperParameterTuningJobSummaries(v []*HyperParameterTuningJobSummary) *ListHyperParameterTuningJobsOutput {
s.HyperParameterTuningJobSummaries = v
return s
} | go | func (s *ListHyperParameterTuningJobsOutput) SetHyperParameterTuningJobSummaries(v []*HyperParameterTuningJobSummary) *ListHyperParameterTuningJobsOutput {
s.HyperParameterTuningJobSummaries = v
return s
} | [
"func",
"(",
"s",
"*",
"ListHyperParameterTuningJobsOutput",
")",
"SetHyperParameterTuningJobSummaries",
"(",
"v",
"[",
"]",
"*",
"HyperParameterTuningJobSummary",
")",
"*",
"ListHyperParameterTuningJobsOutput",
"{",
"s",
".",
"HyperParameterTuningJobSummaries",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetHyperParameterTuningJobSummaries sets the HyperParameterTuningJobSummaries field's value. | [
"SetHyperParameterTuningJobSummaries",
"sets",
"the",
"HyperParameterTuningJobSummaries",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L18088-L18091 |
799 | aws/aws-sdk-go | service/sagemaker/api.go | SetJobReferenceCodeContains | func (s *ListLabelingJobsForWorkteamInput) SetJobReferenceCodeContains(v string) *ListLabelingJobsForWorkteamInput {
s.JobReferenceCodeContains = &v
return s
} | go | func (s *ListLabelingJobsForWorkteamInput) SetJobReferenceCodeContains(v string) *ListLabelingJobsForWorkteamInput {
s.JobReferenceCodeContains = &v
return s
} | [
"func",
"(",
"s",
"*",
"ListLabelingJobsForWorkteamInput",
")",
"SetJobReferenceCodeContains",
"(",
"v",
"string",
")",
"*",
"ListLabelingJobsForWorkteamInput",
"{",
"s",
".",
"JobReferenceCodeContains",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] | // SetJobReferenceCodeContains sets the JobReferenceCodeContains field's value. | [
"SetJobReferenceCodeContains",
"sets",
"the",
"JobReferenceCodeContains",
"field",
"s",
"value",
"."
] | 6c4060605190fc6f00d63cd4e5572faa9f07345d | https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/sagemaker/api.go#L18177-L18180 |
Subsets and Splits