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
listlengths 21
1.41k
| docstring
stringlengths 6
2.61k
| docstring_tokens
listlengths 3
215
| sha
stringlengths 40
40
| url
stringlengths 85
252
|
---|---|---|---|---|---|---|---|---|---|---|---|
1,100 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetNegated
|
func (s *Predicate) SetNegated(v bool) *Predicate {
s.Negated = &v
return s
}
|
go
|
func (s *Predicate) SetNegated(v bool) *Predicate {
s.Negated = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Predicate",
")",
"SetNegated",
"(",
"v",
"bool",
")",
"*",
"Predicate",
"{",
"s",
".",
"Negated",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNegated sets the Negated field's value.
|
[
"SetNegated",
"sets",
"the",
"Negated",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L15427-L15430
|
1,101 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetMatchPredicates
|
func (s *RateBasedRule) SetMatchPredicates(v []*Predicate) *RateBasedRule {
s.MatchPredicates = v
return s
}
|
go
|
func (s *RateBasedRule) SetMatchPredicates(v []*Predicate) *RateBasedRule {
s.MatchPredicates = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RateBasedRule",
")",
"SetMatchPredicates",
"(",
"v",
"[",
"]",
"*",
"Predicate",
")",
"*",
"RateBasedRule",
"{",
"s",
".",
"MatchPredicates",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMatchPredicates sets the MatchPredicates field's value.
|
[
"SetMatchPredicates",
"sets",
"the",
"MatchPredicates",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L15651-L15654
|
1,102 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetRegexMatchTuples
|
func (s *RegexMatchSet) SetRegexMatchTuples(v []*RegexMatchTuple) *RegexMatchSet {
s.RegexMatchTuples = v
return s
}
|
go
|
func (s *RegexMatchSet) SetRegexMatchTuples(v []*RegexMatchTuple) *RegexMatchSet {
s.RegexMatchTuples = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RegexMatchSet",
")",
"SetRegexMatchTuples",
"(",
"v",
"[",
"]",
"*",
"RegexMatchTuple",
")",
"*",
"RegexMatchSet",
"{",
"s",
".",
"RegexMatchTuples",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRegexMatchTuples sets the RegexMatchTuples field's value.
|
[
"SetRegexMatchTuples",
"sets",
"the",
"RegexMatchTuples",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L15747-L15750
|
1,103 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetRegexMatchTuple
|
func (s *RegexMatchSetUpdate) SetRegexMatchTuple(v *RegexMatchTuple) *RegexMatchSetUpdate {
s.RegexMatchTuple = v
return s
}
|
go
|
func (s *RegexMatchSetUpdate) SetRegexMatchTuple(v *RegexMatchTuple) *RegexMatchSetUpdate {
s.RegexMatchTuple = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RegexMatchSetUpdate",
")",
"SetRegexMatchTuple",
"(",
"v",
"*",
"RegexMatchTuple",
")",
"*",
"RegexMatchSetUpdate",
"{",
"s",
".",
"RegexMatchTuple",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRegexMatchTuple sets the RegexMatchTuple field's value.
|
[
"SetRegexMatchTuple",
"sets",
"the",
"RegexMatchTuple",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L15853-L15856
|
1,104 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetRegexPatternStrings
|
func (s *RegexPatternSet) SetRegexPatternStrings(v []*string) *RegexPatternSet {
s.RegexPatternStrings = v
return s
}
|
go
|
func (s *RegexPatternSet) SetRegexPatternStrings(v []*string) *RegexPatternSet {
s.RegexPatternStrings = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RegexPatternSet",
")",
"SetRegexPatternStrings",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"RegexPatternSet",
"{",
"s",
".",
"RegexPatternStrings",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRegexPatternStrings sets the RegexPatternStrings field's value.
|
[
"SetRegexPatternStrings",
"sets",
"the",
"RegexPatternStrings",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16070-L16073
|
1,105 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetRegexPatternString
|
func (s *RegexPatternSetUpdate) SetRegexPatternString(v string) *RegexPatternSetUpdate {
s.RegexPatternString = &v
return s
}
|
go
|
func (s *RegexPatternSetUpdate) SetRegexPatternString(v string) *RegexPatternSetUpdate {
s.RegexPatternString = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"RegexPatternSetUpdate",
")",
"SetRegexPatternString",
"(",
"v",
"string",
")",
"*",
"RegexPatternSetUpdate",
"{",
"s",
".",
"RegexPatternString",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRegexPatternString sets the RegexPatternString field's value.
|
[
"SetRegexPatternString",
"sets",
"the",
"RegexPatternString",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16173-L16176
|
1,106 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetPredicates
|
func (s *Rule) SetPredicates(v []*Predicate) *Rule {
s.Predicates = v
return s
}
|
go
|
func (s *Rule) SetPredicates(v []*Predicate) *Rule {
s.Predicates = v
return s
}
|
[
"func",
"(",
"s",
"*",
"Rule",
")",
"SetPredicates",
"(",
"v",
"[",
"]",
"*",
"Predicate",
")",
"*",
"Rule",
"{",
"s",
".",
"Predicates",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPredicates sets the Predicates field's value.
|
[
"SetPredicates",
"sets",
"the",
"Predicates",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16242-L16245
|
1,107 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetRequest
|
func (s *SampledHTTPRequest) SetRequest(v *HTTPRequest) *SampledHTTPRequest {
s.Request = v
return s
}
|
go
|
func (s *SampledHTTPRequest) SetRequest(v *HTTPRequest) *SampledHTTPRequest {
s.Request = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SampledHTTPRequest",
")",
"SetRequest",
"(",
"v",
"*",
"HTTPRequest",
")",
"*",
"SampledHTTPRequest",
"{",
"s",
".",
"Request",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRequest sets the Request field's value.
|
[
"SetRequest",
"sets",
"the",
"Request",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16574-L16577
|
1,108 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetRuleWithinRuleGroup
|
func (s *SampledHTTPRequest) SetRuleWithinRuleGroup(v string) *SampledHTTPRequest {
s.RuleWithinRuleGroup = &v
return s
}
|
go
|
func (s *SampledHTTPRequest) SetRuleWithinRuleGroup(v string) *SampledHTTPRequest {
s.RuleWithinRuleGroup = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"SampledHTTPRequest",
")",
"SetRuleWithinRuleGroup",
"(",
"v",
"string",
")",
"*",
"SampledHTTPRequest",
"{",
"s",
".",
"RuleWithinRuleGroup",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetRuleWithinRuleGroup sets the RuleWithinRuleGroup field's value.
|
[
"SetRuleWithinRuleGroup",
"sets",
"the",
"RuleWithinRuleGroup",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16580-L16583
|
1,109 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetSizeConstraints
|
func (s *SizeConstraintSet) SetSizeConstraints(v []*SizeConstraint) *SizeConstraintSet {
s.SizeConstraints = v
return s
}
|
go
|
func (s *SizeConstraintSet) SetSizeConstraints(v []*SizeConstraint) *SizeConstraintSet {
s.SizeConstraints = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SizeConstraintSet",
")",
"SetSizeConstraints",
"(",
"v",
"[",
"]",
"*",
"SizeConstraint",
")",
"*",
"SizeConstraintSet",
"{",
"s",
".",
"SizeConstraints",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSizeConstraints sets the SizeConstraints field's value.
|
[
"SetSizeConstraints",
"sets",
"the",
"SizeConstraints",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16836-L16839
|
1,110 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetSizeConstraint
|
func (s *SizeConstraintSetUpdate) SetSizeConstraint(v *SizeConstraint) *SizeConstraintSetUpdate {
s.SizeConstraint = v
return s
}
|
go
|
func (s *SizeConstraintSetUpdate) SetSizeConstraint(v *SizeConstraint) *SizeConstraintSetUpdate {
s.SizeConstraint = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SizeConstraintSetUpdate",
")",
"SetSizeConstraint",
"(",
"v",
"*",
"SizeConstraint",
")",
"*",
"SizeConstraintSetUpdate",
"{",
"s",
".",
"SizeConstraint",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSizeConstraint sets the SizeConstraint field's value.
|
[
"SetSizeConstraint",
"sets",
"the",
"SizeConstraint",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L16943-L16946
|
1,111 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetSqlInjectionMatchTuples
|
func (s *SqlInjectionMatchSet) SetSqlInjectionMatchTuples(v []*SqlInjectionMatchTuple) *SqlInjectionMatchSet {
s.SqlInjectionMatchTuples = v
return s
}
|
go
|
func (s *SqlInjectionMatchSet) SetSqlInjectionMatchTuples(v []*SqlInjectionMatchTuple) *SqlInjectionMatchSet {
s.SqlInjectionMatchTuples = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SqlInjectionMatchSet",
")",
"SetSqlInjectionMatchTuples",
"(",
"v",
"[",
"]",
"*",
"SqlInjectionMatchTuple",
")",
"*",
"SqlInjectionMatchSet",
"{",
"s",
".",
"SqlInjectionMatchTuples",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSqlInjectionMatchTuples sets the SqlInjectionMatchTuples field's value.
|
[
"SetSqlInjectionMatchTuples",
"sets",
"the",
"SqlInjectionMatchTuples",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L17001-L17004
|
1,112 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetSqlInjectionMatchTuple
|
func (s *SqlInjectionMatchSetUpdate) SetSqlInjectionMatchTuple(v *SqlInjectionMatchTuple) *SqlInjectionMatchSetUpdate {
s.SqlInjectionMatchTuple = v
return s
}
|
go
|
func (s *SqlInjectionMatchSetUpdate) SetSqlInjectionMatchTuple(v *SqlInjectionMatchTuple) *SqlInjectionMatchSetUpdate {
s.SqlInjectionMatchTuple = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SqlInjectionMatchSetUpdate",
")",
"SetSqlInjectionMatchTuple",
"(",
"v",
"*",
"SqlInjectionMatchTuple",
")",
"*",
"SqlInjectionMatchSetUpdate",
"{",
"s",
".",
"SqlInjectionMatchTuple",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSqlInjectionMatchTuple sets the SqlInjectionMatchTuple field's value.
|
[
"SetSqlInjectionMatchTuple",
"sets",
"the",
"SqlInjectionMatchTuple",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L17107-L17110
|
1,113 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetWebACLArn
|
func (s *WebACL) SetWebACLArn(v string) *WebACL {
s.WebACLArn = &v
return s
}
|
go
|
func (s *WebACL) SetWebACLArn(v string) *WebACL {
s.WebACLArn = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"WebACL",
")",
"SetWebACLArn",
"(",
"v",
"string",
")",
"*",
"WebACL",
"{",
"s",
".",
"WebACLArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetWebACLArn sets the WebACLArn field's value.
|
[
"SetWebACLArn",
"sets",
"the",
"WebACLArn",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L18972-L18975
|
1,114 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetXssMatchTuples
|
func (s *XssMatchSet) SetXssMatchTuples(v []*XssMatchTuple) *XssMatchSet {
s.XssMatchTuples = v
return s
}
|
go
|
func (s *XssMatchSet) SetXssMatchTuples(v []*XssMatchTuple) *XssMatchSet {
s.XssMatchTuples = v
return s
}
|
[
"func",
"(",
"s",
"*",
"XssMatchSet",
")",
"SetXssMatchTuples",
"(",
"v",
"[",
"]",
"*",
"XssMatchTuple",
")",
"*",
"XssMatchSet",
"{",
"s",
".",
"XssMatchTuples",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetXssMatchTuples sets the XssMatchTuples field's value.
|
[
"SetXssMatchTuples",
"sets",
"the",
"XssMatchTuples",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L19138-L19141
|
1,115 |
aws/aws-sdk-go
|
service/waf/api.go
|
SetXssMatchTuple
|
func (s *XssMatchSetUpdate) SetXssMatchTuple(v *XssMatchTuple) *XssMatchSetUpdate {
s.XssMatchTuple = v
return s
}
|
go
|
func (s *XssMatchSetUpdate) SetXssMatchTuple(v *XssMatchTuple) *XssMatchSetUpdate {
s.XssMatchTuple = v
return s
}
|
[
"func",
"(",
"s",
"*",
"XssMatchSetUpdate",
")",
"SetXssMatchTuple",
"(",
"v",
"*",
"XssMatchTuple",
")",
"*",
"XssMatchSetUpdate",
"{",
"s",
".",
"XssMatchTuple",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetXssMatchTuple sets the XssMatchTuple field's value.
|
[
"SetXssMatchTuple",
"sets",
"the",
"XssMatchTuple",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/waf/api.go#L19243-L19246
|
1,116 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetConfigurationTemplates
|
func (s *ApplicationDescription) SetConfigurationTemplates(v []*string) *ApplicationDescription {
s.ConfigurationTemplates = v
return s
}
|
go
|
func (s *ApplicationDescription) SetConfigurationTemplates(v []*string) *ApplicationDescription {
s.ConfigurationTemplates = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ApplicationDescription",
")",
"SetConfigurationTemplates",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ApplicationDescription",
"{",
"s",
".",
"ConfigurationTemplates",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetConfigurationTemplates sets the ConfigurationTemplates field's value.
|
[
"SetConfigurationTemplates",
"sets",
"the",
"ConfigurationTemplates",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L3911-L3914
|
1,117 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetVersionLifecycleConfig
|
func (s *ApplicationResourceLifecycleConfig) SetVersionLifecycleConfig(v *ApplicationVersionLifecycleConfig) *ApplicationResourceLifecycleConfig {
s.VersionLifecycleConfig = v
return s
}
|
go
|
func (s *ApplicationResourceLifecycleConfig) SetVersionLifecycleConfig(v *ApplicationVersionLifecycleConfig) *ApplicationResourceLifecycleConfig {
s.VersionLifecycleConfig = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ApplicationResourceLifecycleConfig",
")",
"SetVersionLifecycleConfig",
"(",
"v",
"*",
"ApplicationVersionLifecycleConfig",
")",
"*",
"ApplicationResourceLifecycleConfig",
"{",
"s",
".",
"VersionLifecycleConfig",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetVersionLifecycleConfig sets the VersionLifecycleConfig field's value.
|
[
"SetVersionLifecycleConfig",
"sets",
"the",
"VersionLifecycleConfig",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4081-L4084
|
1,118 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetApplicationVersionArn
|
func (s *ApplicationVersionDescription) SetApplicationVersionArn(v string) *ApplicationVersionDescription {
s.ApplicationVersionArn = &v
return s
}
|
go
|
func (s *ApplicationVersionDescription) SetApplicationVersionArn(v string) *ApplicationVersionDescription {
s.ApplicationVersionArn = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ApplicationVersionDescription",
")",
"SetApplicationVersionArn",
"(",
"v",
"string",
")",
"*",
"ApplicationVersionDescription",
"{",
"s",
".",
"ApplicationVersionArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetApplicationVersionArn sets the ApplicationVersionArn field's value.
|
[
"SetApplicationVersionArn",
"sets",
"the",
"ApplicationVersionArn",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4158-L4161
|
1,119 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetBuildArn
|
func (s *ApplicationVersionDescription) SetBuildArn(v string) *ApplicationVersionDescription {
s.BuildArn = &v
return s
}
|
go
|
func (s *ApplicationVersionDescription) SetBuildArn(v string) *ApplicationVersionDescription {
s.BuildArn = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ApplicationVersionDescription",
")",
"SetBuildArn",
"(",
"v",
"string",
")",
"*",
"ApplicationVersionDescription",
"{",
"s",
".",
"BuildArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetBuildArn sets the BuildArn field's value.
|
[
"SetBuildArn",
"sets",
"the",
"BuildArn",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4164-L4167
|
1,120 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetMaxAgeRule
|
func (s *ApplicationVersionLifecycleConfig) SetMaxAgeRule(v *MaxAgeRule) *ApplicationVersionLifecycleConfig {
s.MaxAgeRule = v
return s
}
|
go
|
func (s *ApplicationVersionLifecycleConfig) SetMaxAgeRule(v *MaxAgeRule) *ApplicationVersionLifecycleConfig {
s.MaxAgeRule = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ApplicationVersionLifecycleConfig",
")",
"SetMaxAgeRule",
"(",
"v",
"*",
"MaxAgeRule",
")",
"*",
"ApplicationVersionLifecycleConfig",
"{",
"s",
".",
"MaxAgeRule",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMaxAgeRule sets the MaxAgeRule field's value.
|
[
"SetMaxAgeRule",
"sets",
"the",
"MaxAgeRule",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4285-L4288
|
1,121 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetMaxCountRule
|
func (s *ApplicationVersionLifecycleConfig) SetMaxCountRule(v *MaxCountRule) *ApplicationVersionLifecycleConfig {
s.MaxCountRule = v
return s
}
|
go
|
func (s *ApplicationVersionLifecycleConfig) SetMaxCountRule(v *MaxCountRule) *ApplicationVersionLifecycleConfig {
s.MaxCountRule = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ApplicationVersionLifecycleConfig",
")",
"SetMaxCountRule",
"(",
"v",
"*",
"MaxCountRule",
")",
"*",
"ApplicationVersionLifecycleConfig",
"{",
"s",
".",
"MaxCountRule",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMaxCountRule sets the MaxCountRule field's value.
|
[
"SetMaxCountRule",
"sets",
"the",
"MaxCountRule",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4291-L4294
|
1,122 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetArtifactName
|
func (s *BuildConfiguration) SetArtifactName(v string) *BuildConfiguration {
s.ArtifactName = &v
return s
}
|
go
|
func (s *BuildConfiguration) SetArtifactName(v string) *BuildConfiguration {
s.ArtifactName = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"BuildConfiguration",
")",
"SetArtifactName",
"(",
"v",
"string",
")",
"*",
"BuildConfiguration",
"{",
"s",
".",
"ArtifactName",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetArtifactName sets the ArtifactName field's value.
|
[
"SetArtifactName",
"sets",
"the",
"ArtifactName",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4492-L4495
|
1,123 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetCodeBuildServiceRole
|
func (s *BuildConfiguration) SetCodeBuildServiceRole(v string) *BuildConfiguration {
s.CodeBuildServiceRole = &v
return s
}
|
go
|
func (s *BuildConfiguration) SetCodeBuildServiceRole(v string) *BuildConfiguration {
s.CodeBuildServiceRole = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"BuildConfiguration",
")",
"SetCodeBuildServiceRole",
"(",
"v",
"string",
")",
"*",
"BuildConfiguration",
"{",
"s",
".",
"CodeBuildServiceRole",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCodeBuildServiceRole sets the CodeBuildServiceRole field's value.
|
[
"SetCodeBuildServiceRole",
"sets",
"the",
"CodeBuildServiceRole",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4498-L4501
|
1,124 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetIOWait
|
func (s *CPUUtilization) SetIOWait(v float64) *CPUUtilization {
s.IOWait = &v
return s
}
|
go
|
func (s *CPUUtilization) SetIOWait(v float64) *CPUUtilization {
s.IOWait = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CPUUtilization",
")",
"SetIOWait",
"(",
"v",
"float64",
")",
"*",
"CPUUtilization",
"{",
"s",
".",
"IOWait",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIOWait sets the IOWait field's value.
|
[
"SetIOWait",
"sets",
"the",
"IOWait",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4605-L4608
|
1,125 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetIRQ
|
func (s *CPUUtilization) SetIRQ(v float64) *CPUUtilization {
s.IRQ = &v
return s
}
|
go
|
func (s *CPUUtilization) SetIRQ(v float64) *CPUUtilization {
s.IRQ = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CPUUtilization",
")",
"SetIRQ",
"(",
"v",
"float64",
")",
"*",
"CPUUtilization",
"{",
"s",
".",
"IRQ",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIRQ sets the IRQ field's value.
|
[
"SetIRQ",
"sets",
"the",
"IRQ",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4611-L4614
|
1,126 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetIdle
|
func (s *CPUUtilization) SetIdle(v float64) *CPUUtilization {
s.Idle = &v
return s
}
|
go
|
func (s *CPUUtilization) SetIdle(v float64) *CPUUtilization {
s.Idle = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CPUUtilization",
")",
"SetIdle",
"(",
"v",
"float64",
")",
"*",
"CPUUtilization",
"{",
"s",
".",
"Idle",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIdle sets the Idle field's value.
|
[
"SetIdle",
"sets",
"the",
"Idle",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4617-L4620
|
1,127 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetNice
|
func (s *CPUUtilization) SetNice(v float64) *CPUUtilization {
s.Nice = &v
return s
}
|
go
|
func (s *CPUUtilization) SetNice(v float64) *CPUUtilization {
s.Nice = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CPUUtilization",
")",
"SetNice",
"(",
"v",
"float64",
")",
"*",
"CPUUtilization",
"{",
"s",
".",
"Nice",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNice sets the Nice field's value.
|
[
"SetNice",
"sets",
"the",
"Nice",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4623-L4626
|
1,128 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSoftIRQ
|
func (s *CPUUtilization) SetSoftIRQ(v float64) *CPUUtilization {
s.SoftIRQ = &v
return s
}
|
go
|
func (s *CPUUtilization) SetSoftIRQ(v float64) *CPUUtilization {
s.SoftIRQ = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CPUUtilization",
")",
"SetSoftIRQ",
"(",
"v",
"float64",
")",
"*",
"CPUUtilization",
"{",
"s",
".",
"SoftIRQ",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSoftIRQ sets the SoftIRQ field's value.
|
[
"SetSoftIRQ",
"sets",
"the",
"SoftIRQ",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4635-L4638
|
1,129 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetFullyQualifiedCNAME
|
func (s *CheckDNSAvailabilityOutput) SetFullyQualifiedCNAME(v string) *CheckDNSAvailabilityOutput {
s.FullyQualifiedCNAME = &v
return s
}
|
go
|
func (s *CheckDNSAvailabilityOutput) SetFullyQualifiedCNAME(v string) *CheckDNSAvailabilityOutput {
s.FullyQualifiedCNAME = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CheckDNSAvailabilityOutput",
")",
"SetFullyQualifiedCNAME",
"(",
"v",
"string",
")",
"*",
"CheckDNSAvailabilityOutput",
"{",
"s",
".",
"FullyQualifiedCNAME",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetFullyQualifiedCNAME sets the FullyQualifiedCNAME field's value.
|
[
"SetFullyQualifiedCNAME",
"sets",
"the",
"FullyQualifiedCNAME",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4727-L4730
|
1,130 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetChangeSeverity
|
func (s *ConfigurationOptionDescription) SetChangeSeverity(v string) *ConfigurationOptionDescription {
s.ChangeSeverity = &v
return s
}
|
go
|
func (s *ConfigurationOptionDescription) SetChangeSeverity(v string) *ConfigurationOptionDescription {
s.ChangeSeverity = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ConfigurationOptionDescription",
")",
"SetChangeSeverity",
"(",
"v",
"string",
")",
"*",
"ConfigurationOptionDescription",
"{",
"s",
".",
"ChangeSeverity",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetChangeSeverity sets the ChangeSeverity field's value.
|
[
"SetChangeSeverity",
"sets",
"the",
"ChangeSeverity",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4886-L4889
|
1,131 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetUserDefined
|
func (s *ConfigurationOptionDescription) SetUserDefined(v bool) *ConfigurationOptionDescription {
s.UserDefined = &v
return s
}
|
go
|
func (s *ConfigurationOptionDescription) SetUserDefined(v bool) *ConfigurationOptionDescription {
s.UserDefined = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ConfigurationOptionDescription",
")",
"SetUserDefined",
"(",
"v",
"bool",
")",
"*",
"ConfigurationOptionDescription",
"{",
"s",
".",
"UserDefined",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUserDefined sets the UserDefined field's value.
|
[
"SetUserDefined",
"sets",
"the",
"UserDefined",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4934-L4937
|
1,132 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetValueOptions
|
func (s *ConfigurationOptionDescription) SetValueOptions(v []*string) *ConfigurationOptionDescription {
s.ValueOptions = v
return s
}
|
go
|
func (s *ConfigurationOptionDescription) SetValueOptions(v []*string) *ConfigurationOptionDescription {
s.ValueOptions = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ConfigurationOptionDescription",
")",
"SetValueOptions",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ConfigurationOptionDescription",
"{",
"s",
".",
"ValueOptions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetValueOptions sets the ValueOptions field's value.
|
[
"SetValueOptions",
"sets",
"the",
"ValueOptions",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4940-L4943
|
1,133 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetValueType
|
func (s *ConfigurationOptionDescription) SetValueType(v string) *ConfigurationOptionDescription {
s.ValueType = &v
return s
}
|
go
|
func (s *ConfigurationOptionDescription) SetValueType(v string) *ConfigurationOptionDescription {
s.ValueType = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ConfigurationOptionDescription",
")",
"SetValueType",
"(",
"v",
"string",
")",
"*",
"ConfigurationOptionDescription",
"{",
"s",
".",
"ValueType",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetValueType sets the ValueType field's value.
|
[
"SetValueType",
"sets",
"the",
"ValueType",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L4946-L4949
|
1,134 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetAutoCreateApplication
|
func (s *CreateApplicationVersionInput) SetAutoCreateApplication(v bool) *CreateApplicationVersionInput {
s.AutoCreateApplication = &v
return s
}
|
go
|
func (s *CreateApplicationVersionInput) SetAutoCreateApplication(v bool) *CreateApplicationVersionInput {
s.AutoCreateApplication = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateApplicationVersionInput",
")",
"SetAutoCreateApplication",
"(",
"v",
"bool",
")",
"*",
"CreateApplicationVersionInput",
"{",
"s",
".",
"AutoCreateApplication",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAutoCreateApplication sets the AutoCreateApplication field's value.
|
[
"SetAutoCreateApplication",
"sets",
"the",
"AutoCreateApplication",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L5349-L5352
|
1,135 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetBuildConfiguration
|
func (s *CreateApplicationVersionInput) SetBuildConfiguration(v *BuildConfiguration) *CreateApplicationVersionInput {
s.BuildConfiguration = v
return s
}
|
go
|
func (s *CreateApplicationVersionInput) SetBuildConfiguration(v *BuildConfiguration) *CreateApplicationVersionInput {
s.BuildConfiguration = v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateApplicationVersionInput",
")",
"SetBuildConfiguration",
"(",
"v",
"*",
"BuildConfiguration",
")",
"*",
"CreateApplicationVersionInput",
"{",
"s",
".",
"BuildConfiguration",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetBuildConfiguration sets the BuildConfiguration field's value.
|
[
"SetBuildConfiguration",
"sets",
"the",
"BuildConfiguration",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L5355-L5358
|
1,136 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSourceConfiguration
|
func (s *CreateConfigurationTemplateInput) SetSourceConfiguration(v *SourceConfiguration) *CreateConfigurationTemplateInput {
s.SourceConfiguration = v
return s
}
|
go
|
func (s *CreateConfigurationTemplateInput) SetSourceConfiguration(v *SourceConfiguration) *CreateConfigurationTemplateInput {
s.SourceConfiguration = v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreateConfigurationTemplateInput",
")",
"SetSourceConfiguration",
"(",
"v",
"*",
"SourceConfiguration",
")",
"*",
"CreateConfigurationTemplateInput",
"{",
"s",
".",
"SourceConfiguration",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSourceConfiguration sets the SourceConfiguration field's value.
|
[
"SetSourceConfiguration",
"sets",
"the",
"SourceConfiguration",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L5558-L5561
|
1,137 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetPlatformDefinitionBundle
|
func (s *CreatePlatformVersionInput) SetPlatformDefinitionBundle(v *S3Location) *CreatePlatformVersionInput {
s.PlatformDefinitionBundle = v
return s
}
|
go
|
func (s *CreatePlatformVersionInput) SetPlatformDefinitionBundle(v *S3Location) *CreatePlatformVersionInput {
s.PlatformDefinitionBundle = v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreatePlatformVersionInput",
")",
"SetPlatformDefinitionBundle",
"(",
"v",
"*",
"S3Location",
")",
"*",
"CreatePlatformVersionInput",
"{",
"s",
".",
"PlatformDefinitionBundle",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPlatformDefinitionBundle sets the PlatformDefinitionBundle field's value.
|
[
"SetPlatformDefinitionBundle",
"sets",
"the",
"PlatformDefinitionBundle",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L5901-L5904
|
1,138 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetBuilder
|
func (s *CreatePlatformVersionOutput) SetBuilder(v *Builder) *CreatePlatformVersionOutput {
s.Builder = v
return s
}
|
go
|
func (s *CreatePlatformVersionOutput) SetBuilder(v *Builder) *CreatePlatformVersionOutput {
s.Builder = v
return s
}
|
[
"func",
"(",
"s",
"*",
"CreatePlatformVersionOutput",
")",
"SetBuilder",
"(",
"v",
"*",
"Builder",
")",
"*",
"CreatePlatformVersionOutput",
"{",
"s",
".",
"Builder",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetBuilder sets the Builder field's value.
|
[
"SetBuilder",
"sets",
"the",
"Builder",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L5945-L5948
|
1,139 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetTerminateEnvByForce
|
func (s *DeleteApplicationInput) SetTerminateEnvByForce(v bool) *DeleteApplicationInput {
s.TerminateEnvByForce = &v
return s
}
|
go
|
func (s *DeleteApplicationInput) SetTerminateEnvByForce(v bool) *DeleteApplicationInput {
s.TerminateEnvByForce = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeleteApplicationInput",
")",
"SetTerminateEnvByForce",
"(",
"v",
"bool",
")",
"*",
"DeleteApplicationInput",
"{",
"s",
".",
"TerminateEnvByForce",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetTerminateEnvByForce sets the TerminateEnvByForce field's value.
|
[
"SetTerminateEnvByForce",
"sets",
"the",
"TerminateEnvByForce",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L6074-L6077
|
1,140 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetDeleteSourceBundle
|
func (s *DeleteApplicationVersionInput) SetDeleteSourceBundle(v bool) *DeleteApplicationVersionInput {
s.DeleteSourceBundle = &v
return s
}
|
go
|
func (s *DeleteApplicationVersionInput) SetDeleteSourceBundle(v bool) *DeleteApplicationVersionInput {
s.DeleteSourceBundle = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DeleteApplicationVersionInput",
")",
"SetDeleteSourceBundle",
"(",
"v",
"bool",
")",
"*",
"DeleteApplicationVersionInput",
"{",
"s",
".",
"DeleteSourceBundle",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeleteSourceBundle sets the DeleteSourceBundle field's value.
|
[
"SetDeleteSourceBundle",
"sets",
"the",
"DeleteSourceBundle",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L6152-L6155
|
1,141 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetDeploymentTime
|
func (s *Deployment) SetDeploymentTime(v time.Time) *Deployment {
s.DeploymentTime = &v
return s
}
|
go
|
func (s *Deployment) SetDeploymentTime(v time.Time) *Deployment {
s.DeploymentTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Deployment",
")",
"SetDeploymentTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"Deployment",
"{",
"s",
".",
"DeploymentTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeploymentTime sets the DeploymentTime field's value.
|
[
"SetDeploymentTime",
"sets",
"the",
"DeploymentTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L6412-L6415
|
1,142 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetResourceQuotas
|
func (s *DescribeAccountAttributesOutput) SetResourceQuotas(v *ResourceQuotas) *DescribeAccountAttributesOutput {
s.ResourceQuotas = v
return s
}
|
go
|
func (s *DescribeAccountAttributesOutput) SetResourceQuotas(v *ResourceQuotas) *DescribeAccountAttributesOutput {
s.ResourceQuotas = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeAccountAttributesOutput",
")",
"SetResourceQuotas",
"(",
"v",
"*",
"ResourceQuotas",
")",
"*",
"DescribeAccountAttributesOutput",
"{",
"s",
".",
"ResourceQuotas",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetResourceQuotas sets the ResourceQuotas field's value.
|
[
"SetResourceQuotas",
"sets",
"the",
"ResourceQuotas",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L6461-L6464
|
1,143 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetApplicationVersions
|
func (s *DescribeApplicationVersionsOutput) SetApplicationVersions(v []*ApplicationVersionDescription) *DescribeApplicationVersionsOutput {
s.ApplicationVersions = v
return s
}
|
go
|
func (s *DescribeApplicationVersionsOutput) SetApplicationVersions(v []*ApplicationVersionDescription) *DescribeApplicationVersionsOutput {
s.ApplicationVersions = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeApplicationVersionsOutput",
")",
"SetApplicationVersions",
"(",
"v",
"[",
"]",
"*",
"ApplicationVersionDescription",
")",
"*",
"DescribeApplicationVersionsOutput",
"{",
"s",
".",
"ApplicationVersions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetApplicationVersions sets the ApplicationVersions field's value.
|
[
"SetApplicationVersions",
"sets",
"the",
"ApplicationVersions",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L6564-L6567
|
1,144 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetConfigurationSettings
|
func (s *DescribeConfigurationSettingsOutput) SetConfigurationSettings(v []*ConfigurationSettingsDescription) *DescribeConfigurationSettingsOutput {
s.ConfigurationSettings = v
return s
}
|
go
|
func (s *DescribeConfigurationSettingsOutput) SetConfigurationSettings(v []*ConfigurationSettingsDescription) *DescribeConfigurationSettingsOutput {
s.ConfigurationSettings = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeConfigurationSettingsOutput",
")",
"SetConfigurationSettings",
"(",
"v",
"[",
"]",
"*",
"ConfigurationSettingsDescription",
")",
"*",
"DescribeConfigurationSettingsOutput",
"{",
"s",
".",
"ConfigurationSettings",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetConfigurationSettings sets the ConfigurationSettings field's value.
|
[
"SetConfigurationSettings",
"sets",
"the",
"ConfigurationSettings",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L6863-L6866
|
1,145 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetInstancesHealth
|
func (s *DescribeEnvironmentHealthOutput) SetInstancesHealth(v *InstanceHealthSummary) *DescribeEnvironmentHealthOutput {
s.InstancesHealth = v
return s
}
|
go
|
func (s *DescribeEnvironmentHealthOutput) SetInstancesHealth(v *InstanceHealthSummary) *DescribeEnvironmentHealthOutput {
s.InstancesHealth = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeEnvironmentHealthOutput",
")",
"SetInstancesHealth",
"(",
"v",
"*",
"InstanceHealthSummary",
")",
"*",
"DescribeEnvironmentHealthOutput",
"{",
"s",
".",
"InstancesHealth",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstancesHealth sets the InstancesHealth field's value.
|
[
"SetInstancesHealth",
"sets",
"the",
"InstancesHealth",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7002-L7005
|
1,146 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetManagedActionHistoryItems
|
func (s *DescribeEnvironmentManagedActionHistoryOutput) SetManagedActionHistoryItems(v []*ManagedActionHistoryItem) *DescribeEnvironmentManagedActionHistoryOutput {
s.ManagedActionHistoryItems = v
return s
}
|
go
|
func (s *DescribeEnvironmentManagedActionHistoryOutput) SetManagedActionHistoryItems(v []*ManagedActionHistoryItem) *DescribeEnvironmentManagedActionHistoryOutput {
s.ManagedActionHistoryItems = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeEnvironmentManagedActionHistoryOutput",
")",
"SetManagedActionHistoryItems",
"(",
"v",
"[",
"]",
"*",
"ManagedActionHistoryItem",
")",
"*",
"DescribeEnvironmentManagedActionHistoryOutput",
"{",
"s",
".",
"ManagedActionHistoryItems",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetManagedActionHistoryItems sets the ManagedActionHistoryItems field's value.
|
[
"SetManagedActionHistoryItems",
"sets",
"the",
"ManagedActionHistoryItems",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7106-L7109
|
1,147 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetManagedActions
|
func (s *DescribeEnvironmentManagedActionsOutput) SetManagedActions(v []*ManagedAction) *DescribeEnvironmentManagedActionsOutput {
s.ManagedActions = v
return s
}
|
go
|
func (s *DescribeEnvironmentManagedActionsOutput) SetManagedActions(v []*ManagedAction) *DescribeEnvironmentManagedActionsOutput {
s.ManagedActions = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeEnvironmentManagedActionsOutput",
")",
"SetManagedActions",
"(",
"v",
"[",
"]",
"*",
"ManagedAction",
")",
"*",
"DescribeEnvironmentManagedActionsOutput",
"{",
"s",
".",
"ManagedActions",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetManagedActions sets the ManagedActions field's value.
|
[
"SetManagedActions",
"sets",
"the",
"ManagedActions",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7178-L7181
|
1,148 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEnvironmentResources
|
func (s *DescribeEnvironmentResourcesOutput) SetEnvironmentResources(v *EnvironmentResourceDescription) *DescribeEnvironmentResourcesOutput {
s.EnvironmentResources = v
return s
}
|
go
|
func (s *DescribeEnvironmentResourcesOutput) SetEnvironmentResources(v *EnvironmentResourceDescription) *DescribeEnvironmentResourcesOutput {
s.EnvironmentResources = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeEnvironmentResourcesOutput",
")",
"SetEnvironmentResources",
"(",
"v",
"*",
"EnvironmentResourceDescription",
")",
"*",
"DescribeEnvironmentResourcesOutput",
"{",
"s",
".",
"EnvironmentResources",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEnvironmentResources sets the EnvironmentResources field's value.
|
[
"SetEnvironmentResources",
"sets",
"the",
"EnvironmentResources",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7256-L7259
|
1,149 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEnvironmentNames
|
func (s *DescribeEnvironmentsInput) SetEnvironmentNames(v []*string) *DescribeEnvironmentsInput {
s.EnvironmentNames = v
return s
}
|
go
|
func (s *DescribeEnvironmentsInput) SetEnvironmentNames(v []*string) *DescribeEnvironmentsInput {
s.EnvironmentNames = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeEnvironmentsInput",
")",
"SetEnvironmentNames",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"DescribeEnvironmentsInput",
"{",
"s",
".",
"EnvironmentNames",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEnvironmentNames sets the EnvironmentNames field's value.
|
[
"SetEnvironmentNames",
"sets",
"the",
"EnvironmentNames",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7350-L7353
|
1,150 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetIncludedDeletedBackTo
|
func (s *DescribeEnvironmentsInput) SetIncludedDeletedBackTo(v time.Time) *DescribeEnvironmentsInput {
s.IncludedDeletedBackTo = &v
return s
}
|
go
|
func (s *DescribeEnvironmentsInput) SetIncludedDeletedBackTo(v time.Time) *DescribeEnvironmentsInput {
s.IncludedDeletedBackTo = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeEnvironmentsInput",
")",
"SetIncludedDeletedBackTo",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"DescribeEnvironmentsInput",
"{",
"s",
".",
"IncludedDeletedBackTo",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetIncludedDeletedBackTo sets the IncludedDeletedBackTo field's value.
|
[
"SetIncludedDeletedBackTo",
"sets",
"the",
"IncludedDeletedBackTo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7362-L7365
|
1,151 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetInstanceHealthList
|
func (s *DescribeInstancesHealthOutput) SetInstanceHealthList(v []*SingleInstanceHealth) *DescribeInstancesHealthOutput {
s.InstanceHealthList = v
return s
}
|
go
|
func (s *DescribeInstancesHealthOutput) SetInstanceHealthList(v []*SingleInstanceHealth) *DescribeInstancesHealthOutput {
s.InstanceHealthList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribeInstancesHealthOutput",
")",
"SetInstanceHealthList",
"(",
"v",
"[",
"]",
"*",
"SingleInstanceHealth",
")",
"*",
"DescribeInstancesHealthOutput",
"{",
"s",
".",
"InstanceHealthList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetInstanceHealthList sets the InstanceHealthList field's value.
|
[
"SetInstanceHealthList",
"sets",
"the",
"InstanceHealthList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7675-L7678
|
1,152 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetPlatformDescription
|
func (s *DescribePlatformVersionOutput) SetPlatformDescription(v *PlatformDescription) *DescribePlatformVersionOutput {
s.PlatformDescription = v
return s
}
|
go
|
func (s *DescribePlatformVersionOutput) SetPlatformDescription(v *PlatformDescription) *DescribePlatformVersionOutput {
s.PlatformDescription = v
return s
}
|
[
"func",
"(",
"s",
"*",
"DescribePlatformVersionOutput",
")",
"SetPlatformDescription",
"(",
"v",
"*",
"PlatformDescription",
")",
"*",
"DescribePlatformVersionOutput",
"{",
"s",
".",
"PlatformDescription",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPlatformDescription sets the PlatformDescription field's value.
|
[
"SetPlatformDescription",
"sets",
"the",
"PlatformDescription",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7733-L7736
|
1,153 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetAbortableOperationInProgress
|
func (s *EnvironmentDescription) SetAbortableOperationInProgress(v bool) *EnvironmentDescription {
s.AbortableOperationInProgress = &v
return s
}
|
go
|
func (s *EnvironmentDescription) SetAbortableOperationInProgress(v bool) *EnvironmentDescription {
s.AbortableOperationInProgress = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentDescription",
")",
"SetAbortableOperationInProgress",
"(",
"v",
"bool",
")",
"*",
"EnvironmentDescription",
"{",
"s",
".",
"AbortableOperationInProgress",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetAbortableOperationInProgress sets the AbortableOperationInProgress field's value.
|
[
"SetAbortableOperationInProgress",
"sets",
"the",
"AbortableOperationInProgress",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7849-L7852
|
1,154 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetCNAME
|
func (s *EnvironmentDescription) SetCNAME(v string) *EnvironmentDescription {
s.CNAME = &v
return s
}
|
go
|
func (s *EnvironmentDescription) SetCNAME(v string) *EnvironmentDescription {
s.CNAME = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentDescription",
")",
"SetCNAME",
"(",
"v",
"string",
")",
"*",
"EnvironmentDescription",
"{",
"s",
".",
"CNAME",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCNAME sets the CNAME field's value.
|
[
"SetCNAME",
"sets",
"the",
"CNAME",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7861-L7864
|
1,155 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEndpointURL
|
func (s *EnvironmentDescription) SetEndpointURL(v string) *EnvironmentDescription {
s.EndpointURL = &v
return s
}
|
go
|
func (s *EnvironmentDescription) SetEndpointURL(v string) *EnvironmentDescription {
s.EndpointURL = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentDescription",
")",
"SetEndpointURL",
"(",
"v",
"string",
")",
"*",
"EnvironmentDescription",
"{",
"s",
".",
"EndpointURL",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEndpointURL sets the EndpointURL field's value.
|
[
"SetEndpointURL",
"sets",
"the",
"EndpointURL",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7885-L7888
|
1,156 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEnvironmentArn
|
func (s *EnvironmentDescription) SetEnvironmentArn(v string) *EnvironmentDescription {
s.EnvironmentArn = &v
return s
}
|
go
|
func (s *EnvironmentDescription) SetEnvironmentArn(v string) *EnvironmentDescription {
s.EnvironmentArn = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentDescription",
")",
"SetEnvironmentArn",
"(",
"v",
"string",
")",
"*",
"EnvironmentDescription",
"{",
"s",
".",
"EnvironmentArn",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEnvironmentArn sets the EnvironmentArn field's value.
|
[
"SetEnvironmentArn",
"sets",
"the",
"EnvironmentArn",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7891-L7894
|
1,157 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEnvironmentLinks
|
func (s *EnvironmentDescription) SetEnvironmentLinks(v []*EnvironmentLink) *EnvironmentDescription {
s.EnvironmentLinks = v
return s
}
|
go
|
func (s *EnvironmentDescription) SetEnvironmentLinks(v []*EnvironmentLink) *EnvironmentDescription {
s.EnvironmentLinks = v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentDescription",
")",
"SetEnvironmentLinks",
"(",
"v",
"[",
"]",
"*",
"EnvironmentLink",
")",
"*",
"EnvironmentDescription",
"{",
"s",
".",
"EnvironmentLinks",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEnvironmentLinks sets the EnvironmentLinks field's value.
|
[
"SetEnvironmentLinks",
"sets",
"the",
"EnvironmentLinks",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L7903-L7906
|
1,158 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSampleTimestamp
|
func (s *EnvironmentInfoDescription) SetSampleTimestamp(v time.Time) *EnvironmentInfoDescription {
s.SampleTimestamp = &v
return s
}
|
go
|
func (s *EnvironmentInfoDescription) SetSampleTimestamp(v time.Time) *EnvironmentInfoDescription {
s.SampleTimestamp = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentInfoDescription",
")",
"SetSampleTimestamp",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"EnvironmentInfoDescription",
"{",
"s",
".",
"SampleTimestamp",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSampleTimestamp sets the SampleTimestamp field's value.
|
[
"SetSampleTimestamp",
"sets",
"the",
"SampleTimestamp",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8052-L8055
|
1,159 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetLaunchTemplates
|
func (s *EnvironmentResourceDescription) SetLaunchTemplates(v []*LaunchTemplate) *EnvironmentResourceDescription {
s.LaunchTemplates = v
return s
}
|
go
|
func (s *EnvironmentResourceDescription) SetLaunchTemplates(v []*LaunchTemplate) *EnvironmentResourceDescription {
s.LaunchTemplates = v
return s
}
|
[
"func",
"(",
"s",
"*",
"EnvironmentResourceDescription",
")",
"SetLaunchTemplates",
"(",
"v",
"[",
"]",
"*",
"LaunchTemplate",
")",
"*",
"EnvironmentResourceDescription",
"{",
"s",
".",
"LaunchTemplates",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetLaunchTemplates sets the LaunchTemplates field's value.
|
[
"SetLaunchTemplates",
"sets",
"the",
"LaunchTemplates",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8158-L8161
|
1,160 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetDegraded
|
func (s *InstanceHealthSummary) SetDegraded(v int64) *InstanceHealthSummary {
s.Degraded = &v
return s
}
|
go
|
func (s *InstanceHealthSummary) SetDegraded(v int64) *InstanceHealthSummary {
s.Degraded = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceHealthSummary",
")",
"SetDegraded",
"(",
"v",
"int64",
")",
"*",
"InstanceHealthSummary",
"{",
"s",
".",
"Degraded",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDegraded sets the Degraded field's value.
|
[
"SetDegraded",
"sets",
"the",
"Degraded",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8431-L8434
|
1,161 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetNoData
|
func (s *InstanceHealthSummary) SetNoData(v int64) *InstanceHealthSummary {
s.NoData = &v
return s
}
|
go
|
func (s *InstanceHealthSummary) SetNoData(v int64) *InstanceHealthSummary {
s.NoData = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceHealthSummary",
")",
"SetNoData",
"(",
"v",
"int64",
")",
"*",
"InstanceHealthSummary",
"{",
"s",
".",
"NoData",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetNoData sets the NoData field's value.
|
[
"SetNoData",
"sets",
"the",
"NoData",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8443-L8446
|
1,162 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetOk
|
func (s *InstanceHealthSummary) SetOk(v int64) *InstanceHealthSummary {
s.Ok = &v
return s
}
|
go
|
func (s *InstanceHealthSummary) SetOk(v int64) *InstanceHealthSummary {
s.Ok = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceHealthSummary",
")",
"SetOk",
"(",
"v",
"int64",
")",
"*",
"InstanceHealthSummary",
"{",
"s",
".",
"Ok",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetOk sets the Ok field's value.
|
[
"SetOk",
"sets",
"the",
"Ok",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8449-L8452
|
1,163 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSevere
|
func (s *InstanceHealthSummary) SetSevere(v int64) *InstanceHealthSummary {
s.Severe = &v
return s
}
|
go
|
func (s *InstanceHealthSummary) SetSevere(v int64) *InstanceHealthSummary {
s.Severe = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceHealthSummary",
")",
"SetSevere",
"(",
"v",
"int64",
")",
"*",
"InstanceHealthSummary",
"{",
"s",
".",
"Severe",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSevere sets the Severe field's value.
|
[
"SetSevere",
"sets",
"the",
"Severe",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8461-L8464
|
1,164 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetUnknown
|
func (s *InstanceHealthSummary) SetUnknown(v int64) *InstanceHealthSummary {
s.Unknown = &v
return s
}
|
go
|
func (s *InstanceHealthSummary) SetUnknown(v int64) *InstanceHealthSummary {
s.Unknown = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"InstanceHealthSummary",
")",
"SetUnknown",
"(",
"v",
"int64",
")",
"*",
"InstanceHealthSummary",
"{",
"s",
".",
"Unknown",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetUnknown sets the Unknown field's value.
|
[
"SetUnknown",
"sets",
"the",
"Unknown",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8467-L8470
|
1,165 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP10
|
func (s *Latency) SetP10(v float64) *Latency {
s.P10 = &v
return s
}
|
go
|
func (s *Latency) SetP10(v float64) *Latency {
s.P10 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP10",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P10",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP10 sets the P10 field's value.
|
[
"SetP10",
"sets",
"the",
"P10",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8527-L8530
|
1,166 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP50
|
func (s *Latency) SetP50(v float64) *Latency {
s.P50 = &v
return s
}
|
go
|
func (s *Latency) SetP50(v float64) *Latency {
s.P50 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP50",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P50",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP50 sets the P50 field's value.
|
[
"SetP50",
"sets",
"the",
"P50",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8533-L8536
|
1,167 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP75
|
func (s *Latency) SetP75(v float64) *Latency {
s.P75 = &v
return s
}
|
go
|
func (s *Latency) SetP75(v float64) *Latency {
s.P75 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP75",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P75",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP75 sets the P75 field's value.
|
[
"SetP75",
"sets",
"the",
"P75",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8539-L8542
|
1,168 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP85
|
func (s *Latency) SetP85(v float64) *Latency {
s.P85 = &v
return s
}
|
go
|
func (s *Latency) SetP85(v float64) *Latency {
s.P85 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP85",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P85",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP85 sets the P85 field's value.
|
[
"SetP85",
"sets",
"the",
"P85",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8545-L8548
|
1,169 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP90
|
func (s *Latency) SetP90(v float64) *Latency {
s.P90 = &v
return s
}
|
go
|
func (s *Latency) SetP90(v float64) *Latency {
s.P90 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP90",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P90",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP90 sets the P90 field's value.
|
[
"SetP90",
"sets",
"the",
"P90",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8551-L8554
|
1,170 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP95
|
func (s *Latency) SetP95(v float64) *Latency {
s.P95 = &v
return s
}
|
go
|
func (s *Latency) SetP95(v float64) *Latency {
s.P95 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP95",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P95",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP95 sets the P95 field's value.
|
[
"SetP95",
"sets",
"the",
"P95",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8557-L8560
|
1,171 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP99
|
func (s *Latency) SetP99(v float64) *Latency {
s.P99 = &v
return s
}
|
go
|
func (s *Latency) SetP99(v float64) *Latency {
s.P99 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP99",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P99",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP99 sets the P99 field's value.
|
[
"SetP99",
"sets",
"the",
"P99",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8563-L8566
|
1,172 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetP999
|
func (s *Latency) SetP999(v float64) *Latency {
s.P999 = &v
return s
}
|
go
|
func (s *Latency) SetP999(v float64) *Latency {
s.P999 = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Latency",
")",
"SetP999",
"(",
"v",
"float64",
")",
"*",
"Latency",
"{",
"s",
".",
"P999",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetP999 sets the P999 field's value.
|
[
"SetP999",
"sets",
"the",
"P999",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8569-L8572
|
1,173 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSolutionStackDetails
|
func (s *ListAvailableSolutionStacksOutput) SetSolutionStackDetails(v []*SolutionStackDescription) *ListAvailableSolutionStacksOutput {
s.SolutionStackDetails = v
return s
}
|
go
|
func (s *ListAvailableSolutionStacksOutput) SetSolutionStackDetails(v []*SolutionStackDescription) *ListAvailableSolutionStacksOutput {
s.SolutionStackDetails = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListAvailableSolutionStacksOutput",
")",
"SetSolutionStackDetails",
"(",
"v",
"[",
"]",
"*",
"SolutionStackDescription",
")",
"*",
"ListAvailableSolutionStacksOutput",
"{",
"s",
".",
"SolutionStackDetails",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSolutionStackDetails sets the SolutionStackDetails field's value.
|
[
"SetSolutionStackDetails",
"sets",
"the",
"SolutionStackDetails",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8658-L8661
|
1,174 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSolutionStacks
|
func (s *ListAvailableSolutionStacksOutput) SetSolutionStacks(v []*string) *ListAvailableSolutionStacksOutput {
s.SolutionStacks = v
return s
}
|
go
|
func (s *ListAvailableSolutionStacksOutput) SetSolutionStacks(v []*string) *ListAvailableSolutionStacksOutput {
s.SolutionStacks = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListAvailableSolutionStacksOutput",
")",
"SetSolutionStacks",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"ListAvailableSolutionStacksOutput",
"{",
"s",
".",
"SolutionStacks",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSolutionStacks sets the SolutionStacks field's value.
|
[
"SetSolutionStacks",
"sets",
"the",
"SolutionStacks",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8664-L8667
|
1,175 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetPlatformSummaryList
|
func (s *ListPlatformVersionsOutput) SetPlatformSummaryList(v []*PlatformSummary) *ListPlatformVersionsOutput {
s.PlatformSummaryList = v
return s
}
|
go
|
func (s *ListPlatformVersionsOutput) SetPlatformSummaryList(v []*PlatformSummary) *ListPlatformVersionsOutput {
s.PlatformSummaryList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ListPlatformVersionsOutput",
")",
"SetPlatformSummaryList",
"(",
"v",
"[",
"]",
"*",
"PlatformSummary",
")",
"*",
"ListPlatformVersionsOutput",
"{",
"s",
".",
"PlatformSummaryList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPlatformSummaryList sets the PlatformSummaryList field's value.
|
[
"SetPlatformSummaryList",
"sets",
"the",
"PlatformSummaryList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8753-L8756
|
1,176 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetWindowStartTime
|
func (s *ManagedAction) SetWindowStartTime(v time.Time) *ManagedAction {
s.WindowStartTime = &v
return s
}
|
go
|
func (s *ManagedAction) SetWindowStartTime(v time.Time) *ManagedAction {
s.WindowStartTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ManagedAction",
")",
"SetWindowStartTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ManagedAction",
"{",
"s",
".",
"WindowStartTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetWindowStartTime sets the WindowStartTime field's value.
|
[
"SetWindowStartTime",
"sets",
"the",
"WindowStartTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L8986-L8989
|
1,177 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetExecutedTime
|
func (s *ManagedActionHistoryItem) SetExecutedTime(v time.Time) *ManagedActionHistoryItem {
s.ExecutedTime = &v
return s
}
|
go
|
func (s *ManagedActionHistoryItem) SetExecutedTime(v time.Time) *ManagedActionHistoryItem {
s.ExecutedTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ManagedActionHistoryItem",
")",
"SetExecutedTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ManagedActionHistoryItem",
"{",
"s",
".",
"ExecutedTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetExecutedTime sets the ExecutedTime field's value.
|
[
"SetExecutedTime",
"sets",
"the",
"ExecutedTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9049-L9052
|
1,178 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetFailureDescription
|
func (s *ManagedActionHistoryItem) SetFailureDescription(v string) *ManagedActionHistoryItem {
s.FailureDescription = &v
return s
}
|
go
|
func (s *ManagedActionHistoryItem) SetFailureDescription(v string) *ManagedActionHistoryItem {
s.FailureDescription = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ManagedActionHistoryItem",
")",
"SetFailureDescription",
"(",
"v",
"string",
")",
"*",
"ManagedActionHistoryItem",
"{",
"s",
".",
"FailureDescription",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetFailureDescription sets the FailureDescription field's value.
|
[
"SetFailureDescription",
"sets",
"the",
"FailureDescription",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9055-L9058
|
1,179 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetFinishedTime
|
func (s *ManagedActionHistoryItem) SetFinishedTime(v time.Time) *ManagedActionHistoryItem {
s.FinishedTime = &v
return s
}
|
go
|
func (s *ManagedActionHistoryItem) SetFinishedTime(v time.Time) *ManagedActionHistoryItem {
s.FinishedTime = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"ManagedActionHistoryItem",
")",
"SetFinishedTime",
"(",
"v",
"time",
".",
"Time",
")",
"*",
"ManagedActionHistoryItem",
"{",
"s",
".",
"FinishedTime",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetFinishedTime sets the FinishedTime field's value.
|
[
"SetFinishedTime",
"sets",
"the",
"FinishedTime",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9067-L9070
|
1,180 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetMaxAgeInDays
|
func (s *MaxAgeRule) SetMaxAgeInDays(v int64) *MaxAgeRule {
s.MaxAgeInDays = &v
return s
}
|
go
|
func (s *MaxAgeRule) SetMaxAgeInDays(v int64) *MaxAgeRule {
s.MaxAgeInDays = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"MaxAgeRule",
")",
"SetMaxAgeInDays",
"(",
"v",
"int64",
")",
"*",
"MaxAgeRule",
"{",
"s",
".",
"MaxAgeInDays",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMaxAgeInDays sets the MaxAgeInDays field's value.
|
[
"SetMaxAgeInDays",
"sets",
"the",
"MaxAgeInDays",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9132-L9135
|
1,181 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetMaxCount
|
func (s *MaxCountRule) SetMaxCount(v int64) *MaxCountRule {
s.MaxCount = &v
return s
}
|
go
|
func (s *MaxCountRule) SetMaxCount(v int64) *MaxCountRule {
s.MaxCount = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"MaxCountRule",
")",
"SetMaxCount",
"(",
"v",
"int64",
")",
"*",
"MaxCountRule",
"{",
"s",
".",
"MaxCount",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMaxCount sets the MaxCount field's value.
|
[
"SetMaxCount",
"sets",
"the",
"MaxCount",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9191-L9194
|
1,182 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetCustomAmiList
|
func (s *PlatformDescription) SetCustomAmiList(v []*CustomAmi) *PlatformDescription {
s.CustomAmiList = v
return s
}
|
go
|
func (s *PlatformDescription) SetCustomAmiList(v []*CustomAmi) *PlatformDescription {
s.CustomAmiList = v
return s
}
|
[
"func",
"(",
"s",
"*",
"PlatformDescription",
")",
"SetCustomAmiList",
"(",
"v",
"[",
"]",
"*",
"CustomAmi",
")",
"*",
"PlatformDescription",
"{",
"s",
".",
"CustomAmiList",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCustomAmiList sets the CustomAmiList field's value.
|
[
"SetCustomAmiList",
"sets",
"the",
"CustomAmiList",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9356-L9359
|
1,183 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetFrameworks
|
func (s *PlatformDescription) SetFrameworks(v []*PlatformFramework) *PlatformDescription {
s.Frameworks = v
return s
}
|
go
|
func (s *PlatformDescription) SetFrameworks(v []*PlatformFramework) *PlatformDescription {
s.Frameworks = v
return s
}
|
[
"func",
"(",
"s",
"*",
"PlatformDescription",
")",
"SetFrameworks",
"(",
"v",
"[",
"]",
"*",
"PlatformFramework",
")",
"*",
"PlatformDescription",
"{",
"s",
".",
"Frameworks",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetFrameworks sets the Frameworks field's value.
|
[
"SetFrameworks",
"sets",
"the",
"Frameworks",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9380-L9383
|
1,184 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetMaintainer
|
func (s *PlatformDescription) SetMaintainer(v string) *PlatformDescription {
s.Maintainer = &v
return s
}
|
go
|
func (s *PlatformDescription) SetMaintainer(v string) *PlatformDescription {
s.Maintainer = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"PlatformDescription",
")",
"SetMaintainer",
"(",
"v",
"string",
")",
"*",
"PlatformDescription",
"{",
"s",
".",
"Maintainer",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetMaintainer sets the Maintainer field's value.
|
[
"SetMaintainer",
"sets",
"the",
"Maintainer",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9386-L9389
|
1,185 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetProgrammingLanguages
|
func (s *PlatformDescription) SetProgrammingLanguages(v []*PlatformProgrammingLanguage) *PlatformDescription {
s.ProgrammingLanguages = v
return s
}
|
go
|
func (s *PlatformDescription) SetProgrammingLanguages(v []*PlatformProgrammingLanguage) *PlatformDescription {
s.ProgrammingLanguages = v
return s
}
|
[
"func",
"(",
"s",
"*",
"PlatformDescription",
")",
"SetProgrammingLanguages",
"(",
"v",
"[",
"]",
"*",
"PlatformProgrammingLanguage",
")",
"*",
"PlatformDescription",
"{",
"s",
".",
"ProgrammingLanguages",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetProgrammingLanguages sets the ProgrammingLanguages field's value.
|
[
"SetProgrammingLanguages",
"sets",
"the",
"ProgrammingLanguages",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9440-L9443
|
1,186 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetURL
|
func (s *Queue) SetURL(v string) *Queue {
s.URL = &v
return s
}
|
go
|
func (s *Queue) SetURL(v string) *Queue {
s.URL = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"Queue",
")",
"SetURL",
"(",
"v",
"string",
")",
"*",
"Queue",
"{",
"s",
".",
"URL",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetURL sets the URL field's value.
|
[
"SetURL",
"sets",
"the",
"URL",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9697-L9700
|
1,187 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetApplicationQuota
|
func (s *ResourceQuotas) SetApplicationQuota(v *ResourceQuota) *ResourceQuotas {
s.ApplicationQuota = v
return s
}
|
go
|
func (s *ResourceQuotas) SetApplicationQuota(v *ResourceQuota) *ResourceQuotas {
s.ApplicationQuota = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceQuotas",
")",
"SetApplicationQuota",
"(",
"v",
"*",
"ResourceQuota",
")",
"*",
"ResourceQuotas",
"{",
"s",
".",
"ApplicationQuota",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetApplicationQuota sets the ApplicationQuota field's value.
|
[
"SetApplicationQuota",
"sets",
"the",
"ApplicationQuota",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9916-L9919
|
1,188 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetApplicationVersionQuota
|
func (s *ResourceQuotas) SetApplicationVersionQuota(v *ResourceQuota) *ResourceQuotas {
s.ApplicationVersionQuota = v
return s
}
|
go
|
func (s *ResourceQuotas) SetApplicationVersionQuota(v *ResourceQuota) *ResourceQuotas {
s.ApplicationVersionQuota = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceQuotas",
")",
"SetApplicationVersionQuota",
"(",
"v",
"*",
"ResourceQuota",
")",
"*",
"ResourceQuotas",
"{",
"s",
".",
"ApplicationVersionQuota",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetApplicationVersionQuota sets the ApplicationVersionQuota field's value.
|
[
"SetApplicationVersionQuota",
"sets",
"the",
"ApplicationVersionQuota",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9922-L9925
|
1,189 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetConfigurationTemplateQuota
|
func (s *ResourceQuotas) SetConfigurationTemplateQuota(v *ResourceQuota) *ResourceQuotas {
s.ConfigurationTemplateQuota = v
return s
}
|
go
|
func (s *ResourceQuotas) SetConfigurationTemplateQuota(v *ResourceQuota) *ResourceQuotas {
s.ConfigurationTemplateQuota = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceQuotas",
")",
"SetConfigurationTemplateQuota",
"(",
"v",
"*",
"ResourceQuota",
")",
"*",
"ResourceQuotas",
"{",
"s",
".",
"ConfigurationTemplateQuota",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetConfigurationTemplateQuota sets the ConfigurationTemplateQuota field's value.
|
[
"SetConfigurationTemplateQuota",
"sets",
"the",
"ConfigurationTemplateQuota",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9928-L9931
|
1,190 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetCustomPlatformQuota
|
func (s *ResourceQuotas) SetCustomPlatformQuota(v *ResourceQuota) *ResourceQuotas {
s.CustomPlatformQuota = v
return s
}
|
go
|
func (s *ResourceQuotas) SetCustomPlatformQuota(v *ResourceQuota) *ResourceQuotas {
s.CustomPlatformQuota = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceQuotas",
")",
"SetCustomPlatformQuota",
"(",
"v",
"*",
"ResourceQuota",
")",
"*",
"ResourceQuotas",
"{",
"s",
".",
"CustomPlatformQuota",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetCustomPlatformQuota sets the CustomPlatformQuota field's value.
|
[
"SetCustomPlatformQuota",
"sets",
"the",
"CustomPlatformQuota",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9934-L9937
|
1,191 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEnvironmentQuota
|
func (s *ResourceQuotas) SetEnvironmentQuota(v *ResourceQuota) *ResourceQuotas {
s.EnvironmentQuota = v
return s
}
|
go
|
func (s *ResourceQuotas) SetEnvironmentQuota(v *ResourceQuota) *ResourceQuotas {
s.EnvironmentQuota = v
return s
}
|
[
"func",
"(",
"s",
"*",
"ResourceQuotas",
")",
"SetEnvironmentQuota",
"(",
"v",
"*",
"ResourceQuota",
")",
"*",
"ResourceQuotas",
"{",
"s",
".",
"EnvironmentQuota",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEnvironmentQuota sets the EnvironmentQuota field's value.
|
[
"SetEnvironmentQuota",
"sets",
"the",
"EnvironmentQuota",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L9940-L9943
|
1,192 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetEnvironmentInfo
|
func (s *RetrieveEnvironmentInfoOutput) SetEnvironmentInfo(v []*EnvironmentInfoDescription) *RetrieveEnvironmentInfoOutput {
s.EnvironmentInfo = v
return s
}
|
go
|
func (s *RetrieveEnvironmentInfoOutput) SetEnvironmentInfo(v []*EnvironmentInfoDescription) *RetrieveEnvironmentInfoOutput {
s.EnvironmentInfo = v
return s
}
|
[
"func",
"(",
"s",
"*",
"RetrieveEnvironmentInfoOutput",
")",
"SetEnvironmentInfo",
"(",
"v",
"[",
"]",
"*",
"EnvironmentInfoDescription",
")",
"*",
"RetrieveEnvironmentInfoOutput",
"{",
"s",
".",
"EnvironmentInfo",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetEnvironmentInfo sets the EnvironmentInfo field's value.
|
[
"SetEnvironmentInfo",
"sets",
"the",
"EnvironmentInfo",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10103-L10106
|
1,193 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetDeployment
|
func (s *SingleInstanceHealth) SetDeployment(v *Deployment) *SingleInstanceHealth {
s.Deployment = v
return s
}
|
go
|
func (s *SingleInstanceHealth) SetDeployment(v *Deployment) *SingleInstanceHealth {
s.Deployment = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SingleInstanceHealth",
")",
"SetDeployment",
"(",
"v",
"*",
"Deployment",
")",
"*",
"SingleInstanceHealth",
"{",
"s",
".",
"Deployment",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetDeployment sets the Deployment field's value.
|
[
"SetDeployment",
"sets",
"the",
"Deployment",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10216-L10219
|
1,194 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetPermittedFileTypes
|
func (s *SolutionStackDescription) SetPermittedFileTypes(v []*string) *SolutionStackDescription {
s.PermittedFileTypes = v
return s
}
|
go
|
func (s *SolutionStackDescription) SetPermittedFileTypes(v []*string) *SolutionStackDescription {
s.PermittedFileTypes = v
return s
}
|
[
"func",
"(",
"s",
"*",
"SolutionStackDescription",
")",
"SetPermittedFileTypes",
"(",
"v",
"[",
"]",
"*",
"string",
")",
"*",
"SolutionStackDescription",
"{",
"s",
".",
"PermittedFileTypes",
"=",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetPermittedFileTypes sets the PermittedFileTypes field's value.
|
[
"SetPermittedFileTypes",
"sets",
"the",
"PermittedFileTypes",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10273-L10276
|
1,195 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSourceLocation
|
func (s *SourceBuildInformation) SetSourceLocation(v string) *SourceBuildInformation {
s.SourceLocation = &v
return s
}
|
go
|
func (s *SourceBuildInformation) SetSourceLocation(v string) *SourceBuildInformation {
s.SourceLocation = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"SourceBuildInformation",
")",
"SetSourceLocation",
"(",
"v",
"string",
")",
"*",
"SourceBuildInformation",
"{",
"s",
".",
"SourceLocation",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSourceLocation sets the SourceLocation field's value.
|
[
"SetSourceLocation",
"sets",
"the",
"SourceLocation",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10352-L10355
|
1,196 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetSourceRepository
|
func (s *SourceBuildInformation) SetSourceRepository(v string) *SourceBuildInformation {
s.SourceRepository = &v
return s
}
|
go
|
func (s *SourceBuildInformation) SetSourceRepository(v string) *SourceBuildInformation {
s.SourceRepository = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"SourceBuildInformation",
")",
"SetSourceRepository",
"(",
"v",
"string",
")",
"*",
"SourceBuildInformation",
"{",
"s",
".",
"SourceRepository",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetSourceRepository sets the SourceRepository field's value.
|
[
"SetSourceRepository",
"sets",
"the",
"SourceRepository",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10358-L10361
|
1,197 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetStatus2xx
|
func (s *StatusCodes) SetStatus2xx(v int64) *StatusCodes {
s.Status2xx = &v
return s
}
|
go
|
func (s *StatusCodes) SetStatus2xx(v int64) *StatusCodes {
s.Status2xx = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"StatusCodes",
")",
"SetStatus2xx",
"(",
"v",
"int64",
")",
"*",
"StatusCodes",
"{",
"s",
".",
"Status2xx",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetStatus2xx sets the Status2xx field's value.
|
[
"SetStatus2xx",
"sets",
"the",
"Status2xx",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10452-L10455
|
1,198 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetStatus3xx
|
func (s *StatusCodes) SetStatus3xx(v int64) *StatusCodes {
s.Status3xx = &v
return s
}
|
go
|
func (s *StatusCodes) SetStatus3xx(v int64) *StatusCodes {
s.Status3xx = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"StatusCodes",
")",
"SetStatus3xx",
"(",
"v",
"int64",
")",
"*",
"StatusCodes",
"{",
"s",
".",
"Status3xx",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetStatus3xx sets the Status3xx field's value.
|
[
"SetStatus3xx",
"sets",
"the",
"Status3xx",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10458-L10461
|
1,199 |
aws/aws-sdk-go
|
service/elasticbeanstalk/api.go
|
SetStatus4xx
|
func (s *StatusCodes) SetStatus4xx(v int64) *StatusCodes {
s.Status4xx = &v
return s
}
|
go
|
func (s *StatusCodes) SetStatus4xx(v int64) *StatusCodes {
s.Status4xx = &v
return s
}
|
[
"func",
"(",
"s",
"*",
"StatusCodes",
")",
"SetStatus4xx",
"(",
"v",
"int64",
")",
"*",
"StatusCodes",
"{",
"s",
".",
"Status4xx",
"=",
"&",
"v",
"\n",
"return",
"s",
"\n",
"}"
] |
// SetStatus4xx sets the Status4xx field's value.
|
[
"SetStatus4xx",
"sets",
"the",
"Status4xx",
"field",
"s",
"value",
"."
] |
6c4060605190fc6f00d63cd4e5572faa9f07345d
|
https://github.com/aws/aws-sdk-go/blob/6c4060605190fc6f00d63cd4e5572faa9f07345d/service/elasticbeanstalk/api.go#L10464-L10467
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.